find_font_console.sh (240B)
1 #!/usr/bin/env bash 2 3 #Useless, consoles don't support font fallback 4 5 find() { 6 grep -i "fontface" $1 | cut -d '=' -f 2 7 } 8 9 FILE_CONFIG=/etc/default/console-setup 10 11 if [ -e $FILE_CONFIG -a -r $FILE_CONFIG ];then 12 find "$FILE_CONFIG" 13 fi