summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorzsmith <zsmith@newhopechurch.tv>2025-07-22 11:45:03 -0500
committerzsmith <zsmith@newhopechurch.tv>2025-07-22 11:45:03 -0500
commit7f1d3d2763a66501adfc32009001e1742bab543b (patch)
treee911c9fa7c9d30896e171479d11d243b589a6b10 /Makefile
parent1eab36c3af8ac9f4bce9a2890050fb9f37cbe01f (diff)
parent1f4aad995aff13e53de23f469ae64f14ee66ce70 (diff)
Merge branch 'master' into mac
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