fontsize (436B)
1 # fontsized N changes font size to DejaVu Sans Mono N pts 2 3 function fontsized () { 4 # inspired by 5 # https://github.com/majutsushi/urxvt-font-size 6 7 for a in 710 711 712 713; 8 do 9 echo -e "\033]$a;xft:DejaVu Sans Mono:size=$1\033\\" 10 done 11 } 12 13 function fontsize () { 14 # inspired by 15 # https://github.com/majutsushi/urxvt-font-size 16 17 for a in 710 711 712 713; 18 do 19 echo -e "\033]$a;xft:Terminus:size=$1\033\\" 20 done 21 } 22