- Close applications before shutdown/logout/reboot - Fixed battery check script - Always display hidden files in ranger TODO: - Wait for logout/shutdown/reboot until all applications are closed (timeout)
37 lines
788 B
Plaintext
Executable File
37 lines
788 B
Plaintext
Executable File
{
|
|
"label" : "lock",
|
|
"action" : "~/.config/hypr/scripts/lock.sh",
|
|
"text" : "Lock",
|
|
"keybind" : "l"
|
|
}
|
|
{
|
|
"label" : "reboot",
|
|
"action" : "~/.config/hypr/scripts/close_apps.sh && systemctl reboot",
|
|
"text" : "Reboot",
|
|
"keybind" : "r"
|
|
}
|
|
{
|
|
"label" : "shutdown",
|
|
"action" : "~/.config/hypr/scripts/close_apps.sh && systemctl poweroff",
|
|
"text" : "Shutdown",
|
|
"keybind" : "s"
|
|
}
|
|
{
|
|
"label" : "logout",
|
|
"action" : "~/.config/hypr/scripts/close_apps.sh && hyprctl dispatch exit ",
|
|
"text" : "Logout",
|
|
"keybind" : "e"
|
|
}
|
|
{
|
|
"label" : "suspend",
|
|
"action" : "systemctl suspend",
|
|
"text" : "Suspend",
|
|
"keybind" : "u"
|
|
}
|
|
{
|
|
"label" : "suspend",
|
|
"action" : "systemctl hibernate",
|
|
"text" : "Hibernate",
|
|
"keybind" : "h"
|
|
}
|