Hyprland-dotfiles/wlogout/layout

37 lines
701 B
Plaintext
Raw Normal View History

2023-08-31 15:45:49 -04:00
{
"label" : "lock",
2023-09-29 07:13:19 -04:00
"action" : "sleep 1; swaylock",
2023-09-11 07:42:16 -04:00
"text" : "Lock",
"keybind" : "l"
2023-08-31 15:45:49 -04:00
}
{
"label" : "hibernate",
2023-09-29 07:13:19 -04:00
"action" : "sleep 1; 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-10-03 14:37:48 -04:00
"action" : "sleep 1; hyprctl dispatch exit",
2023-09-11 07:42:16 -04:00
"text" : "Logout",
"keybind" : "e"
2023-08-31 15:45:49 -04:00
}
{
"label" : "shutdown",
2023-09-28 15:53:30 -04:00
"action" : "sleep 1; systemctl poweroff",
2023-09-11 07:42:16 -04:00
"text" : "Shutdown",
"keybind" : "s"
2023-08-31 15:45:49 -04:00
}
{
"label" : "suspend",
2023-09-29 07:13:19 -04:00
"action" : "sleep 1; systemctl suspend",
2023-09-11 07:42:16 -04:00
"text" : "Suspend",
"keybind" : "u"
2023-08-31 15:45:49 -04:00
}
{
"label" : "reboot",
2023-09-29 07:13:19 -04:00
"action" : "sleep 1; systemctl reboot",
2023-09-11 07:42:16 -04:00
"text" : "Reboot",
"keybind" : "r"
}