diff options
author | zachir <zachir@librem.one> | 2025-07-21 17:10:57 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-21 17:10:57 -0500 |
commit | be23031b6067c7f90848d851955cd63db1f4cc66 (patch) | |
tree | bc3f744290aa5771259fa83a3d2b4bfc8b918760 | |
parent | 1acb224af2f30859d0daa3637bdac7d6140733ae (diff) | |
parent | 74d02fc247396206e8a3893b2278af8c49e3e7c1 (diff) |
Merge branch 'master' into cas
-rw-r--r-- | Makefile | 15 |
1 files changed, 14 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..." @@ -34,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 |