aboutsummaryrefslogblamecommitdiffstats
path: root/xorg-xinit/Makefile
blob: 6c314bd1a0882eb72de771ea9e6b1f0eb7c6840a (plain) (tree)
1
2
3
4
5
6
7
8
       
                    





                                                                                               








                                         








                                                                                                        



                                                                        








                                                                            
                                      

                         
.POSIX:
include ../common.mk

XINITRC_ORDER = 50

# Testing that xmonad is installed because it is the default sessions
# Testing that asroot, xorg-setxkbmap, and xorg-xmodmap are installed because setkeys uses them
install:
	$(CHECK_INSTALLED) asroot
	$(CHECK_INSTALLED) dconf
	$(CHECK_INSTALLED) xmonad
	$(CHECK_INSTALLED) xorg-setxkbmap
	$(CHECK_INSTALLED) xorg-xmodmap
	$(CHECK_INSTALLED) xorg-xrandr
	$(CHECK_INSTALLED) xorg-xrdb
	$(CHECK_INSTALLED) xorg-xset
	$(CHECK_INSTALLED) xorg-xsetroot
	mkdir -p -- ~/.config/bash/aliases.d
	test ! -d ~/.config/bash/aliases.d/xorg-xinit
	ln -sf -- ~/.dotfiles/xorg-xinit/bash-aliases ~/.config/bash/aliases.d/xorg-xinit
	mkdir -p -- ~/.config/X11/xinit
	test ! -d ~/.config/X11/xinit/xinitrc
	ln -sf -- ~/.dotfiles/xorg-xinit/xinitrc ~/.config/X11/xinit/xinitrc
	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
	-rmdir -- ~/.config/bash/aliases.d
	-unlink -- ~/.config/X11/xinit/xinitrc
	-unlink -- ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xinit
	-rmdir -- ~/.config/X11/xinit/xinitrc.d
	-rmdir -- ~/.config/X11/xinit
	-rmdir -- ~/.config/X11
	-unlink -- ~/.local/bin/startx

.PHONY: install uninstall