hyprland-dotfiles/wlogout/layout

37 lines
704 B
Plaintext
Raw Normal View History

2023-08-31 19:45:49 +00:00
{
"label" : "lock",
2024-02-23 15:03:57 +00:00
"action" : "sleep 1; hyprlock",
2023-09-11 11:42:16 +00:00
"text" : "Lock",
"keybind" : "l"
2023-08-31 19:45:49 +00:00
}
{
"label" : "hibernate",
2023-09-29 11:13:19 +00:00
"action" : "sleep 1; systemctl hibernate",
2023-09-11 11:42:16 +00:00
"text" : "Hibernate",
"keybind" : "h"
2023-08-31 19:45:49 +00:00
}
{
"label" : "logout",
2024-02-24 10:39:04 +00:00
"action" : "$HOME/dotfiles/hypr/scripts/exit.sh",
2023-11-23 07:09:40 +00:00
"text" : "Exit",
2023-09-11 11:42:16 +00:00
"keybind" : "e"
2023-08-31 19:45:49 +00:00
}
{
"label" : "shutdown",
2023-09-28 19:53:30 +00:00
"action" : "sleep 1; systemctl poweroff",
2023-09-11 11:42:16 +00:00
"text" : "Shutdown",
"keybind" : "s"
2023-08-31 19:45:49 +00:00
}
{
"label" : "suspend",
2023-09-29 11:13:19 +00:00
"action" : "sleep 1; systemctl suspend",
2023-09-11 11:42:16 +00:00
"text" : "Suspend",
"keybind" : "u"
2023-08-31 19:45:49 +00:00
}
{
"label" : "reboot",
2023-09-29 11:13:19 +00:00
"action" : "sleep 1; systemctl reboot",
2023-09-11 11:42:16 +00:00
"text" : "Reboot",
"keybind" : "r"
}