From a228c54dd54d9a5efe5fc484e4dd60e0d7e888e9 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 14 Oct 2025 18:48:26 +0200 Subject: [PATCH] remove debug print --- .config/quickshell/ii/modules/lock/Lock.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.config/quickshell/ii/modules/lock/Lock.qml b/.config/quickshell/ii/modules/lock/Lock.qml index 76cbfe17a..15950093c 100644 --- a/.config/quickshell/ii/modules/lock/Lock.qml +++ b/.config/quickshell/ii/modules/lock/Lock.qml @@ -133,7 +133,6 @@ Scope { Connections { target: Config function onReadyChanged() { - print("lock after config") if (Config.options.lock.launchOnStartup && Config.ready && Persistent.ready && Persistent.isNewHyprlandInstance) { Hyprland.dispatch("global quickshell:lock") } @@ -142,7 +141,6 @@ Scope { Connections { target: Persistent function onReadyChanged() { - print("lock after persistent") if (Config.options.lock.launchOnStartup && Config.ready && Persistent.ready && Persistent.isNewHyprlandInstance) { Hyprland.dispatch("global quickshell:lock") }