Add wlogout layout

This commit is contained in:
kenpat 2026-06-08 18:15:24 +00:00
parent bb80e87ba6
commit 6a7fc8b7bc

41
wlogout/layout Normal file
View file

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