Rearrange for tidier structure (#2212)

This commit is contained in:
clsty
2025-10-16 07:19:55 +08:00
parent 13065d7e5a
commit 8b493e091d
529 changed files with 165 additions and 138 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"label" : "lock",
"action" : "loginctl lock-session",
"text" : "lock",
"keybind" : "l"
}
{
"label" : "hibernate",
"action" : "systemctl hibernate || loginctl hibernate",
"text" : "downloading",
"keybind" : "h"
}
{
"label" : "logout",
"action" : "hyprctl clients -j | jq -r '.[].pid' | xargs kill; pkill Hyprland || pkill sway || pkill niri || loginctl terminate-user $USER",
"text" : "logout",
"keybind" : "e"
}
{
"label" : "shutdown",
"action" : "hyprctl clients -j | jq -r '.[].pid' | xargs kill; systemctl poweroff || loginctl poweroff",
"text" : "power_settings_new",
"keybind" : "s"
}
{
"label" : "suspend",
"action" : "systemctl suspend || loginctl suspend",
"text" : "bedtime",
"keybind" : "u"
}
{
"label" : "reboot",
"action" : "hyprctl clients -j | jq -r '.[].pid' | xargs kill; systemctl reboot || loginctl reboot",
"text" : "restart_alt",
"keybind" : "r"
}
+26
View File
@@ -0,0 +1,26 @@
* {
all: unset;
background-image: none;
transition: 400ms cubic-bezier(0.05, 0.7, 0.1, 1);
}
window {
background: rgba(0, 0, 0, 0.5);
}
button {
font-family: 'Material Symbols Outlined';
font-size: 10rem;
background-color: rgba(11, 11, 11, 0.4);
color: #FFFFFF;
margin: 2rem;
border-radius: 2rem;
padding: 3rem;
}
button:focus,
button:active,
button:hover {
background-color: rgba(51, 51, 51, 0.5);
border-radius: 4rem;
}