aboutsummaryrefslogtreecommitdiffstats
path: root/xorg-xrandr/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--xorg-xrandr/Makefile24
1 files changed, 15 insertions, 9 deletions
diff --git a/xorg-xrandr/Makefile b/xorg-xrandr/Makefile
index d135e27..0968b2a 100644
--- a/xorg-xrandr/Makefile
+++ b/xorg-xrandr/Makefile
@@ -1,26 +1,32 @@
.POSIX:
-include ../common.mk
XINITRC_ORDER = 15
# Testing that xwallpaper is installed because setres calls it
# Testing that python3 is installed because setres is written in it
install:
- $(CHECK_INSTALLED) xwallpaper
- $(CHECK_INSTALLED) python3
+ ../check-in-path xwallpaper
+ ../check-in-path python3
+ ../check-installed-shebang resolution-changed
mkdir -p -- ~/.config/X11/xinit/xinitrc.d
- test ! -d ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
+ test ! -e ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr || \
+ test -L ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
ln -sf -- ~/.dotfiles/xorg-xrandr/xinit ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
mkdir -p -- ~/.local/bin
- make -C setres
- ln -sf -- ~/.dotfiles/xorg-xrandr/setres/setres ~/.local/bin
+ cd setres && $(MAKE)
+ test ! -e ~/.local/bin/setres || test -L ~/.local/bin/setres
+ ln -sf -- ~/.dotfiles/xorg-xrandr/setres/setres ~/.local/bin/setres
+ test ! -e ~/.config/resolution-changed || test -L ~/.config/resolution-changed
+ ln -sf -- ~/.dotfiles/xorg-xrandr/resolution-changed ~/.config/resolution-changed
uninstall:
+ +! ../check-installed xorg-xrandr
+ +! ../check-installed xrandr
+ +! ../check-installed x11-xserver-utils
-unlink -- ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
-rmdir -- ~/.config/X11/xinit/xinitrc.d
-rmdir -- ~/.config/X11/xinit
-rmdir -- ~/.config/X11
+ -unlink -- ~/.config/resolution-changed
-rmdir -- ~/.local/bin/setres
- -make -C setres reallyclean
-
-.PHONY: install uninstall
+ +cd setres && $(MAKE) reallyclean