From 2a0c78d80efb6c19bcdbd7536179adbd2bf8999c Mon Sep 17 00:00:00 2001 From: Jeena Date: Sun, 18 Jan 2026 15:43:51 +0900 Subject: [PATCH 1/2] Add aditional explanation to wlogout --- wlogout/layout | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wlogout/layout b/wlogout/layout index 7576910..fddaccf 100644 --- a/wlogout/layout +++ b/wlogout/layout @@ -7,7 +7,7 @@ { "label" : "hibernate", "action" : "systemctl hibernate", - "text" : "Hibernate", + "text" : "Hibernate (SSD)", "keybind" : "h" } { @@ -25,7 +25,7 @@ { "label" : "suspend", "action" : "systemctl suspend", - "text" : "Suspend", + "text" : "Suspend (RAM)", "keybind" : "u" } { From 17d13449cc7358c8bd14aebbcaa16ca1e1728426 Mon Sep 17 00:00:00 2001 From: Jeena Date: Sun, 18 Jan 2026 15:44:12 +0900 Subject: [PATCH 2/2] helix: Make non visible characters visible I always don't see the trailing spaces, and want to see them now. --- helix/config.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index ea65420..cc42747 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -1,2 +1,10 @@ theme = "jeenas" editor.rulers = [80] + +[editor.whitespace] +render = "all" + +[editor.whitespace.characters] +space = "·" +tab = "→" +newline = "↵"