blob: 79422c5ab155f5be916c7a10a8427960cfa7892b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/dash
#font="schumacher clean-11"
#font="DejaVu Sans Mono-10"
#font="Mono-9:autohint=true"
font="vectorfixed:pixelsize=11:antialias=false:autohint=false"
#font="-misc-fixed-medium-r-normal-*-14-*-*-*-c-*-utf-8"
if test -x /usr/local/bin/st; then
exec /usr/local/bin/st -f "$font" "$@"
else
exec /usr/bin/st -f "$font" "$@"
fi
|