blob: 11777cb1568cf0ca4ea58446e1214e1000a86058 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/dash
%%<fontname='Terminus (TTF)' ; fontsize=8
if test -f ../.private/dmenu/font@"$(hostname)"; then
. ../.private/dmenu/font@"$(hostname)"
fi
%%>
if test -x /usr/local/bin/dmenu; then
exec /usr/local/bin/dmenu -fn '%%{fontname}-%%{fontsize}' "$@"
else
exec /usr/bin/dmenu -fn '%%{fontname}-%%{fontsize}' "$@"
fi
|