diff options
| author | Mattias Andrée <maandree@kth.se> | 2023-11-18 23:23:40 +0100 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2023-11-18 23:23:40 +0100 | 
| commit | 0f1df0db903ba576fd17b08197d3066af7a61e5f (patch) | |
| tree | a59c04307b1382257afa3c3512ec3abadf7e0e47 /bus/Makefile | |
| parent | Use losetup -d instead of --detach and add clean up (diff) | |
| download | dotfiles-0f1df0db903ba576fd17b08197d3066af7a61e5f.tar.gz dotfiles-0f1df0db903ba576fd17b08197d3066af7a61e5f.tar.bz2 dotfiles-0f1df0db903ba576fd17b08197d3066af7a61e5f.tar.xz | |
A lot of changes
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | bus/Makefile | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/bus/Makefile b/bus/Makefile index d4e4c5f..f606d0e 100644 --- a/bus/Makefile +++ b/bus/Makefile @@ -1,22 +1,21 @@  .POSIX: -include ../common.mk  XINITRC_ORDER = 10  install:  	mkdir -p -- ~/.config/profile.d -	test ! -d ~/.config/profile.d/bus +	test ! -e ~/.config/profile.d/bus || test -L ~/.config/profile.d/bus  	ln -sf -- ~/.dotfiles/bus/user-profile ~/.config/profile.d/bus  	mkdir -p -- ~/.config/X11/xinit/xinitrc.d -	test ! -d ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-bus +	test ! -e ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-bus || \ +		test -L ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-bus  	ln -sf -- ~/.dotfiles/bus/xinit ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-bus  uninstall: +	+! ../check-installed bus  	-unlink -- ~/.config/profile.d/bus  	-rmdir -- ~/.config/profile.d  	-unlink -- ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-bus  	-rmdir -- ~/.config/X11/xinit/xinitrc.d  	-rmdir -- ~/.config/X11/xinit  	-rmdir -- ~/.config/X11 - -.PHONY: install uninstall | 
