From 4bd035e99f5ba44d0423d472d70ca9fb7ad72d67 Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 21 Jul 2025 17:10:26 -0500 Subject: Install hyprland plugins in Makefile --- Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28bc66e..e40751b 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,18 @@ DCONFS := doas.conf all: -install: install-zshconfigs install-shconfigs vimplug-vim +install: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim + +install-hyprplugins: + @echo "Installing hyprsplit..." + @hyprpm add https://github.com/shezdy/hyprsplit + @echo "Installing hyprland-plugins..." + @hyprpm add https://github.com/hyprwm/hyprland-plugins + @echo "Enabling hyprsplit..." + @hyprpm enable hyprsplit + @echo "Enabling hyprscrolling..." + @hyprpm enable hyprscrolling + @echo "Done." install-zshconfigs: $(ZCONFS) @echo "Installing zsh conf files..." -- cgit v1.2.3 From 74d02fc247396206e8a3893b2278af8c49e3e7c1 Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 21 Jul 2025 17:10:42 -0500 Subject: Set Makefile targets as PHONY --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index e40751b..3d220be 100644 --- a/Makefile +++ b/Makefile @@ -45,3 +45,5 @@ doas-conf: $(DCONFS) @echo "doas.conf..." @sudo cp -n doas.conf /etc/doas.conf @echo "Done." + +.PHONY: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim doas-conf install -- cgit v1.2.3