From aa7ee6c007aa486d2e4a9ba9668ee04fab81d097 Mon Sep 17 00:00:00 2001 From: Matej Cotman Date: Sun, 5 Oct 2025 14:05:22 +0300 Subject: [PATCH] feat(systemd-inhibit): remove handle-lid-switch --- Services/IdleInhibitorService.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/IdleInhibitorService.qml b/Services/IdleInhibitorService.qml index 9a2504a6..d55bcff2 100644 --- a/Services/IdleInhibitorService.qml +++ b/Services/IdleInhibitorService.qml @@ -131,7 +131,7 @@ Singleton { // Systemd inhibition using systemd-inhibit function startSystemdInhibition() { - inhibitorProcess.command = ["systemd-inhibit", "--what=idle:sleep:handle-lid-switch", "--why=" + reason, "--mode=block", "sleep", "infinity"] + inhibitorProcess.command = ["systemd-inhibit", "--what=idle:sleep", "--why=" + reason, "--mode=block", "sleep", "infinity"] inhibitorProcess.running = true }