aboutsummaryrefslogtreecommitdiffstats
path: root/st
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-06-26 19:48:28 +0200
committerMattias Andrée <maandree@kth.se>2021-06-26 19:48:28 +0200
commita991f35e26ef7692e284f5e17f1486b5e5acc5b5 (patch)
tree94e0f9049e7574b9768d7cdebbd23c27ebe04f05 /st
parentAdd startx wrapper that wrapps startx with orphan-reaper (diff)
downloaddotfiles-a991f35e26ef7692e284f5e17f1486b5e5acc5b5.tar.gz
dotfiles-a991f35e26ef7692e284f5e17f1486b5e5acc5b5.tar.bz2
dotfiles-a991f35e26ef7692e284f5e17f1486b5e5acc5b5.tar.xz
Add the wrappers c, dmenu, mplayer, st, and aur
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'st')
-rw-r--r--st/Makefile12
-rwxr-xr-xst/st7
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
diff --git a/st/st b/st/st
new file mode 100755
index 0000000..cf056a3
--- /dev/null
+++ b/st/st
@@ -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