diff options
| author | Mattias Andrée <maandree@kth.se> | 2021-06-25 16:42:47 +0200 | 
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 16:42:47 +0200 | 
| commit | fb0db5d269ff178322dc23ae6c18049f3f8b9772 (patch) | |
| tree | 0d716908ea2b33adb4853491e3c5d8a3d9cb6f6b /xorg-xrandr/Makefile | |
| parent | m (diff) | |
| download | dotfiles-fb0db5d269ff178322dc23ae6c18049f3f8b9772.tar.gz dotfiles-fb0db5d269ff178322dc23ae6c18049f3f8b9772.tar.bz2 dotfiles-fb0db5d269ff178322dc23ae6c18049f3f8b9772.tar.xz | |
Let main Makefile select package manager
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | xorg-xrandr/Makefile | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/xorg-xrandr/Makefile b/xorg-xrandr/Makefile index 6eed73b..b35df78 100644 --- a/xorg-xrandr/Makefile +++ b/xorg-xrandr/Makefile @@ -1,10 +1,11 @@  .POSIX: +include ../common.mk  XINITRC_ORDER = 15  # Testing that xwallpaper is installed because setres calls it  install: -	pacman -Qq -- xwallpaper </dev/null >/dev/null +	$(CHECK_INSTALLED) xwallpaper  	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 | 
