diff options
author | zsmith <zsmith@newhopechurch.tv> | 2025-07-22 11:45:03 -0500 |
---|---|---|
committer | zsmith <zsmith@newhopechurch.tv> | 2025-07-22 11:45:03 -0500 |
commit | 7f1d3d2763a66501adfc32009001e1742bab543b (patch) | |
tree | e911c9fa7c9d30896e171479d11d243b589a6b10 /Makefile | |
parent | 1eab36c3af8ac9f4bce9a2890050fb9f37cbe01f (diff) | |
parent | 1f4aad995aff13e53de23f469ae64f14ee66ce70 (diff) |
Merge branch 'master' into mac
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -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 |