From 64f749166f5965ad9f05c5496ee7e3dbe6631218 Mon Sep 17 00:00:00 2001 From: Stoppedpuma <58333920+Stoppedpuma@users.noreply.github.com> Date: Fri, 29 Aug 2025 05:43:13 +0200 Subject: [PATCH] fix true statement in config documentation --- docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.md b/docs/config.md index b01d8345..c25a5e6e 100644 --- a/docs/config.md +++ b/docs/config.md @@ -327,7 +327,7 @@ idle.minutes = 10 If you want to lock the screen when this timeout happens, you can use the `on-idle` table. ```toml -on-idle = { type = "exec", exec = { prog = "swaylock", privileged = "true" } } +on-idle = { type = "exec", exec = { prog = "swaylock", privileged = true } } ``` See the specification for more details.