This commit is contained in:
Stephan Raabe
2024-05-23 15:42:03 +02:00
parent 004702f450
commit 150616996f
12 changed files with 65 additions and 35 deletions

View File

@@ -1,36 +1,36 @@
{
"label" : "lock",
"action" : "$HOME/dotfiles/hypr/scripts/lock.sh",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh lock",
"text" : "Lock",
"keybind" : "l"
}
{
"label" : "hibernate",
"action" : "sleep 1; systemctl hibernate",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
{
"label" : "logout",
"action" : "$HOME/dotfiles/hypr/scripts/exit.sh",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh exit",
"text" : "Exit",
"keybind" : "e"
}
{
"label" : "shutdown",
"action" : "$HOME/dotfiles/hypr/scripts/shutdown.sh",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh shutdown",
"text" : "Shutdown",
"keybind" : "s"
}
{
"label" : "suspend",
"action" : "$HOME/dotfiles/hypr/scripts/suspend.sh",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh suspend",
"text" : "Suspend",
"keybind" : "u"
}
{
"label" : "reboot",
"action" : "$HOME/dotfiles/hypr/scripts/reboot.sh",
"action" : "$HOME/dotfiles/hypr/scripts/power.sh reboot",
"text" : "Reboot",
"keybind" : "r"
}