aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-16 13:06:57 -0600
committerCraig Jennings <c@cjennings.net>2026-02-16 13:06:57 -0600
commitc870a72d528214d304fd32295504a85dc65dfe19 (patch)
tree3c4e6c7ddcedd11c6359d59671e3192ff5f57b3f
parente22492573ff4eba7219b41ba2f4e99593e1ddc27 (diff)
downloadarchsetup-c870a72d528214d304fd32295504a85dc65dfe19.tar.gz
archsetup-c870a72d528214d304fd32295504a85dc65dfe19.zip
fix(hyprland): load plugins on every session start
hyprland-plugins-setup was skipping hyprpm reload when plugins were already enabled, so they were never loaded into the running session.
-rwxr-xr-xdotfiles/hyprland/.local/bin/hyprland-plugins-setup3
1 files changed, 2 insertions, 1 deletions
diff --git a/dotfiles/hyprland/.local/bin/hyprland-plugins-setup b/dotfiles/hyprland/.local/bin/hyprland-plugins-setup
index e780cb7..77a01d1 100755
--- a/dotfiles/hyprland/.local/bin/hyprland-plugins-setup
+++ b/dotfiles/hyprland/.local/bin/hyprland-plugins-setup
@@ -12,7 +12,8 @@ log() {
# Check if plugins already installed and enabled
if hyprpm list 2>/dev/null | grep -q "hyprscrolling"; then
if hyprpm list | grep -q "enabled: .*true"; then
- log "Plugins already installed and enabled, skipping"
+ log "Plugins already installed, loading into session"
+ hyprpm reload 2>&1 | tee -a "$LOGFILE"
exit 0
fi
fi