diff options
author | zachir <zachir@librem.one> | 2025-07-21 17:53:50 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-21 17:53:50 -0500 |
commit | b12fe55655b081ba56d85ab605fd142dcba69102 (patch) | |
tree | 0f784d7f7b651ede1ae0c96ac6914e4ea948ab4b | |
parent | 05f6b181dbe26e590a00b911f8f4de20bcd284cf (diff) |
Add setting up hyprland with make install
-rw-r--r-- | Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -7,13 +7,18 @@ all: install: install-hyprplugins install-zshconfigs install-shconfigs vimplug-vim -install-hyprplugins: +install-hyprplugins: install-hyprsplit install-hyprland-plugins + +install-hyprsplit: @echo "Installing hyprsplit..." - @hyprpm add https://github.com/shezdy/hyprsplit - @echo "Installing hyprland-plugins..." - @hyprpm add https://github.com/hyprwm/hyprland-plugins + @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." |