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" +}