diff options
Diffstat (limited to 'xorg-xinit/Makefile')
-rw-r--r-- | xorg-xinit/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xorg-xinit/Makefile b/xorg-xinit/Makefile index 0d017d6..6c314bd 100644 --- a/xorg-xinit/Makefile +++ b/xorg-xinit/Makefile @@ -24,6 +24,10 @@ install: mkdir -p -- ~/.config/X11/xinit/xinitrc.d test ! -d ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xinit ln -sf -- ~/.dotfiles/xorg-xinit/xinit ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xinit + if test -x /usr/bin/orphan-reaper; then \ + mkdir -p -- ~/.local/bin && \ + ln -sf -- ~/.dotfiles/xorg-xinit/startx ~/.local/bin/; \ + fi uninstall: -unlink -- ~/.config/bash/aliases.d/xorg-xinit @@ -33,5 +37,6 @@ uninstall: -rmdir -- ~/.config/X11/xinit/xinitrc.d -rmdir -- ~/.config/X11/xinit -rmdir -- ~/.config/X11 + -unlink -- ~/.local/bin/startx .PHONY: install uninstall |