From 6a7fc8b7bc0fd9daa391bf52810558b9436b89e5 Mon Sep 17 00:00:00 2001 From: kenpat Date: Mon, 8 Jun 2026 18:15:24 +0000 Subject: [PATCH] Add wlogout layout --- wlogout/layout | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 wlogout/layout diff --git a/wlogout/layout b/wlogout/layout new file mode 100644 index 0000000..aae8af0 --- /dev/null +++ b/wlogout/layout @@ -0,0 +1,41 @@ +{ + "label" : "lock", + "action" : "hyprlock", + "text" : "Lock", + "keybind" : "l" +} + +{ + "label" : "logout", + "action" : "loginctl terminate-user $USER", + "text" : "Logout", + "keybind" : "e" +} + +{ + "label" : "shutdown", + "action" : "systemctl poweroff", + "text" : "Shutdown", + "keybind" : "s" +} + +{ + "label" : "reboot", + "action" : "systemctl reboot", + "text" : "Reboot", + "keybind" : "r" +} + +{ + "label" : "suspend", + "action" : "hyprlock & sleep 0.5; systemctl suspend", + "text" : "Suspend", + "keybind" : "u" +} + +{ + "label" : "hibernate", + "action" : "hyprlock & sleep 0.5; systemctl hibernate", + "text" : "Hibernate", + "keybind" : "h" +}