From c7c4394eeda527de2a7a33f913b1c1a1b4bb9d45 Mon Sep 17 00:00:00 2001 From: Alexander Nabokikh Date: Fri, 20 Feb 2026 10:21:57 +0100 Subject: [PATCH] fix(1771): start clipboard watchers at shell boot instead of first launcher open --- shell.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/shell.qml b/shell.qml index c54563b3d..c2364368a 100644 --- a/shell.qml +++ b/shell.qml @@ -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;