Hyprland-dotfiles/wlogout/layout

37 lines
655 B
Plaintext
Raw Normal View History

2023-08-31 15:45:49 -04:00
{
"label" : "lock",
"action" : "swaylock",
2023-09-11 07:42:16 -04:00
"text" : "Lock",
"keybind" : "l"
2023-08-31 15:45:49 -04:00
}
{
"label" : "hibernate",
"action" : "systemctl hibernate",
2023-09-11 07:42:16 -04:00
"text" : "Hibernate",
"keybind" : "h"
2023-08-31 15:45:49 -04:00
}
{
"label" : "logout",
2023-09-11 07:42:16 -04:00
"action" : "loginctl terminate-user $USER",
"text" : "Logout",
"keybind" : "e"
2023-08-31 15:45:49 -04:00
}
{
"label" : "shutdown",
"action" : "systemctl poweroff",
2023-09-11 07:42:16 -04:00
"text" : "Shutdown",
"keybind" : "s"
2023-08-31 15:45:49 -04:00
}
{
"label" : "suspend",
"action" : "systemctl suspend",
2023-09-11 07:42:16 -04:00
"text" : "Suspend",
"keybind" : "u"
2023-08-31 15:45:49 -04:00
}
{
"label" : "reboot",
"action" : "systemctl reboot",
2023-09-11 07:42:16 -04:00
"text" : "Reboot",
"keybind" : "r"
}