diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-26 19:48:28 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-26 19:48:28 +0200 |
commit | a991f35e26ef7692e284f5e17f1486b5e5acc5b5 (patch) | |
tree | 94e0f9049e7574b9768d7cdebbd23c27ebe04f05 /yaourt | |
parent | Add startx wrapper that wrapps startx with orphan-reaper (diff) | |
download | dotfiles-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 'yaourt')
-rw-r--r-- | yaourt/Makefile | 12 | ||||
-rwxr-xr-x | yaourt/aur | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/yaourt/Makefile b/yaourt/Makefile new file mode 100644 index 0000000..4042cb4 --- /dev/null +++ b/yaourt/Makefile @@ -0,0 +1,12 @@ +.POSIX: +include ../common.mk + +install: + $(CHECK_INSTALLED) dash + mkdir -p -- ~/.local/bin + ln -sf -- ~/.dotfiles/yaourt/aur ~/.local/bin/ + +uninstall: + -unlink -- ~/.local/bin/aur + +.PHONY: install uninstall diff --git a/yaourt/aur b/yaourt/aur new file mode 100755 index 0000000..38a2429 --- /dev/null +++ b/yaourt/aur @@ -0,0 +1,2 @@ +#!/bin/dash +exec yaourt --aur "$@" |