Hyprland-dotfiles/wlogout/layout
2023-10-04 14:18:59 +02:00

37 lines
709 B
Plaintext

{
"label" : "lock",
"action" : "sleep 1; swaylock",
"text" : "Lock",
"keybind" : "l"
}
{
"label" : "hibernate",
"action" : "sleep 1; systemctl hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
{
"label" : "logout",
"action" : "sleep 1; loginctl terminate-user $USER",
"text" : "Logout",
"keybind" : "e"
}
{
"label" : "shutdown",
"action" : "sleep 1; systemctl poweroff",
"text" : "Shutdown",
"keybind" : "s"
}
{
"label" : "suspend",
"action" : "sleep 1; systemctl suspend",
"text" : "Suspend",
"keybind" : "u"
}
{
"label" : "reboot",
"action" : "sleep 1; systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
}