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.
|
#!/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) |
|
|
|
|