diff options
Diffstat (limited to '')
-rw-r--r-- | st/Makefile | 12 | ||||
-rwxr-xr-x | st/st | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/st/Makefile b/st/Makefile new file mode 100644 index 0000000..e9e6f52 --- /dev/null +++ b/st/Makefile @@ -0,0 +1,12 @@ +.POSIX: +include ../common.mk + +install: + $(CHECK_INSTALLED) dash + mkdir -p -- ~/.local/bin + ln -sf -- ~/.dotfiles/st/st ~/.local/bin/ + +uninstall: + -unlink -- ~/.local/bin/st + +.PHONY: install uninstall @@ -0,0 +1,7 @@ +#!/bin/dash + +if test -x /usr/local/bin/st; then + exec /usr/local/bin/st -f vectorfixed:pixelsize=11:antialias=false:autohint=false "$@" +else + exec /usr/bin/st -f vectorfixed:pixelsize=11:antialias=false:autohint=false "$@" +fi |