You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
339 B
16 lines
339 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
#Создан: Вт 02 авг 2016 20:58:05
|
||
|
#Изменён: Вт 02 авг 2016 21:20:06
|
||
|
|
||
|
#Выбор шрифта в эмуляторе терминала
|
||
|
|
||
|
while read FONT; do
|
||
|
echo "## $FONT "
|
||
|
fsz 16 "$FONT"
|
||
|
read -p "Применить? [y/n] " y </dev/tty
|
||
|
|
||
|
[ "$y" == "y" ] && exit
|
||
|
done < <(fc-list | cut -d ':' -f 2)
|
||
|
|