From a991f35e26ef7692e284f5e17f1486b5e5acc5b5 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 26 Jun 2021 19:48:28 +0200 Subject: Add the wrappers c, dmenu, mplayer, st, and aur MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- st/Makefile | 12 ++++++++++++ st/st | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 st/Makefile create mode 100755 st/st (limited to 'st') 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 -- cgit v1.2.3-70-g09d2