diff options
Diffstat (limited to '')
-rw-r--r-- | xorg-twm/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xorg-twm/Makefile b/xorg-twm/Makefile new file mode 100644 index 0000000..8935a6f --- /dev/null +++ b/xorg-twm/Makefile @@ -0,0 +1,11 @@ +.POSIX: + +install: + mkdir -p -- ~/.config + test ! -d ~/.config/twmrc + ln -sf -- ~/.dotfiles/xorg-twm/twmrc ~/.config/twmrc + +uninstall: + -unlink -- ~/.config/twmrc + +.PHONY: install uninstall |