fix(1771): start clipboard watchers at shell boot instead of first launcher open

This commit is contained in:
Alexander Nabokikh
2026-02-20 10:21:57 +01:00
parent 8eef8ef71d
commit c7c4394eed
+7
View File
@@ -30,6 +30,7 @@ import qs.Modules.Panels.Settings
import qs.Modules.Toast
import qs.Services.Control
import qs.Services.Hardware
import qs.Services.Keyboard
import qs.Services.Location
import qs.Services.Networking
import qs.Services.Noctalia
@@ -115,6 +116,12 @@ ShellRoot {
SupporterService.init();
CustomButtonIPCService.init();
IPCService.init(screenDetector);
// Force ClipboardService initialization so clipboard watchers
// start immediately instead of waiting for first launcher open
if (Settings.data.appLauncher.enableClipboardHistory) {
ClipboardService.checkCliphistAvailability();
}
});
delayedInitTimer.running = true;