diff options
author | zachir <zachir@librem.one> | 2025-07-21 17:10:26 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-21 17:10:26 -0500 |
commit | 4bd035e99f5ba44d0423d472d70ca9fb7ad72d67 (patch) | |
tree | c5a3f62c3dec68c4b7b95ba5c208f03a2392dfc3 | |
parent | fc10b3b41be868b9a2999d60d267dec45fe210f2 (diff) |
Install hyprland plugins in Makefile
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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..." |