summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 19 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 28bc66e..12854c4 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,23 @@ DCONFS := doas.conf
all:
-install: install-zshconfigs install-shconfigs vimplug-vim
+install: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim
+
+install-hyprplugins: install-hyprsplit install-hyprland-plugins
+
+install-hyprsplit:
+ @echo "Installing hyprsplit..."
+ @hyprpm add https://github.com/shezdy/hyprsplit || echo "Already installed!"
+ @echo "Enabling hyprsplit..."
+ @hyprpm enable hyprsplit
+ @echo "Done."
+
+install-hyprland-plugins:
+ @echo "Installing hyprland-plugins..."
+ @hyprpm add https://github.com/hyprwm/hyprland-plugins || echo "Already installed!"
+ @echo "Enabling hyprscrolling..."
+ @hyprpm enable hyprscrolling
+ @echo "Done."
install-zshconfigs: $(ZCONFS)
@echo "Installing zsh conf files..."
@@ -34,3 +50,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