diff options
author | zachir <zachir@librem.one> | 2025-07-21 17:40:38 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-21 17:40:38 -0500 |
commit | 18e7dc52c0e44228aac12b12135e3d6269fb8dd4 (patch) | |
tree | f8efb1cbc70e2eddb21fc94d679e313fbc7be196 /Makefile | |
parent | 6c4d2d1382208a97ac484d2eb585bf99ca27f923 (diff) | |
parent | 74d02fc247396206e8a3893b2278af8c49e3e7c1 (diff) |
Merge branch 'master' into cla
Diffstat (limited to 'Makefile')
-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 |