diff options
author | ZachIR <zachir@librem.one> | 2025-07-21 20:25:41 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-21 20:25:41 -0500 |
commit | 6ce651ea7a6f0e709de44696ec541c6c225c63ca (patch) | |
tree | 73f8cfdc7f235c3fd595f2f092309012c116f9ea /Makefile | |
parent | 8f74840558d946c95b666a891bce9fc168cb299d (diff) | |
parent | 9b210e8d01027ce84673fe12c933e8d246b2d0da (diff) |
Merge branch 'master' into car
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 |