initial commit

This commit is contained in:
pika 2024-06-01 16:59:31 +02:00
parent 7c25a75c77
commit dd73598196
10 changed files with 144 additions and 0 deletions

36
layout Normal file
View file

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