From 3a65ea21ba08488ad090c6243bb1294d88a2a87f Mon Sep 17 00:00:00 2001 From: bbedward Date: Fri, 2 Jan 2026 19:22:04 -0500 Subject: [PATCH] plugins: fix first plugin install reactivity --- quickshell/Services/PluginService.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/quickshell/Services/PluginService.qml b/quickshell/Services/PluginService.qml index 24666090..8bd6c0b2 100644 --- a/quickshell/Services/PluginService.qml +++ b/quickshell/Services/PluginService.qml @@ -574,6 +574,12 @@ Singleton { } function scanPlugins() { + const userUrl = Paths.toFileUrl(root.pluginDirectory); + const systemUrl = Paths.toFileUrl(root.systemPluginDirectory); + userWatcher.folder = ""; + userWatcher.folder = userUrl; + systemWatcher.folder = ""; + systemWatcher.folder = systemUrl; resyncDebounce.restart(); }