From 9ec9cc0e25b0c77573a68d6bc53b94829408bd48 Mon Sep 17 00:00:00 2001 From: cyclesw <1939653182@qq.com> Date: Wed, 1 Oct 2025 01:36:57 +0800 Subject: [PATCH] fix: ignore case (The latest Hyprland process name has changed) --- .config/quickshell/ii/modules/common/functions/Session.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/common/functions/Session.qml b/.config/quickshell/ii/modules/common/functions/Session.qml index 1afc45817..bbb9932c3 100644 --- a/.config/quickshell/ii/modules/common/functions/Session.qml +++ b/.config/quickshell/ii/modules/common/functions/Session.qml @@ -22,7 +22,7 @@ Singleton { function logout() { closeAllWindows(); - Quickshell.execDetached(["pkill", "Hyprland"]); + Quickshell.execDetached(["pkill", "-i", "Hyprland"]); } function launchTaskManager() {