summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.local/bin
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
commit453749871978438170add6d5338f93a28ab68fa7 (patch)
tree3c4e6c7ddcedd11c6359d59671e3192ff5f57b3f /dotfiles/hyprland/.local/bin
parent30c34e6b4b253ba59098eeb884d2960f30b5c28f (diff)
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.
Diffstat (limited to 'dotfiles/hyprland/.local/bin')
-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