aboutsummaryrefslogtreecommitdiffstats
path: root/xorg-xrandr/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'xorg-xrandr/Makefile')
-rw-r--r--xorg-xrandr/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/xorg-xrandr/Makefile b/xorg-xrandr/Makefile
new file mode 100644
index 0000000..6eed73b
--- /dev/null
+++ b/xorg-xrandr/Makefile
@@ -0,0 +1,18 @@
+.POSIX:
+
+XINITRC_ORDER = 15
+
+# Testing that xwallpaper is installed because setres calls it
+install:
+ pacman -Qq -- xwallpaper </dev/null >/dev/null
+ mkdir -p -- ~/.config/X11/xinit/xinitrc.d
+ test ! -d ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
+ ln -sf -- ~/.dotfiles/xorg-xrandr/xinit ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
+
+uninstall:
+ -unlink -- ~/.config/X11/xinit/xinitrc.d/$(XINITRC_ORDER)-xorg-xrandr
+ -rmdir -- ~/.config/X11/xinit/xinitrc.d
+ -rmdir -- ~/.config/X11/xinit
+ -rmdir -- ~/.config/X11
+
+.PHONY: install uninstall