X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=st;h=1e7751e51a6011eeb2d97c5f7d79c4a0023a852c;hb=HEAD;hp=b017feca52280beafc706d09d0a13bb4633c8133;hpb=18ecdd78c7ee454a4af37f90c48e9c8c549adcf6;p=bin.git diff --git a/st b/st old mode 100644 new mode 100755 index b017fec..1e7751e --- a/st +++ b/st @@ -1,11 +1,10 @@ #!/bin/sh - if which stterm >/dev/null 2>&1; then - stterm -f 'Fixed:pizelsize=20'; + exec stterm -f 'Inconsolata:pixelsize=25'; elif which urxvt >/dev/null 2>&1; then - urxvt -f 'Fixed:pixelsize=20'; + exec urxvt -f 'xft:Inconsolata:pixelsize=25'; elif which uxterm >/dev/null 2>&1; then - uxterm; + exec uxterm; else - xterm; + exec xterm; fi;