From 7269c249458054122d14442f4aff5b6a21cc7d7b Mon Sep 17 00:00:00 2001 From: Matej Cotman Date: Mon, 6 Oct 2025 17:46:40 +0300 Subject: [PATCH] feat(systemd-inhibit): remove sleep --- Services/IdleInhibitorService.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/IdleInhibitorService.qml b/Services/IdleInhibitorService.qml index d55bcff2..a1f789d0 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", "--why=" + reason, "--mode=block", "sleep", "infinity"] + inhibitorProcess.command = ["systemd-inhibit", "--what=idle", "--why=" + reason, "--mode=block", "sleep", "infinity"] inhibitorProcess.running = true }