who knows

This commit is contained in:
atagen 2023-05-20 22:28:48 +10:00
parent bb2e813df8
commit aae14e214e
11 changed files with 512 additions and 218 deletions

View file

@ -1,36 +1,38 @@
{
"label" : "lock",
"action" : "waylock",
"text" : "Lock",
"keybind" : "l"
}
{
"label" : "logout",
"action" : "loginctl terminate-user $USER",
"text" : "Logout",
"keybind" : "e"
}
{
"label" : "suspend",
"action" : "systemctl suspend",
"text" : "Suspend",
"keybind" : "s"
}
{
"label" : "shutdown",
"action" : "systemctl poweroff",
"text" : "Shutdown",
"keybind" : "d"
}
{
"label" : "reboot",
"action" : "systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
}
{
"label" : "hibernate",
"action" : "systemctl hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
[
{
"label" : "lock",
"action" : "waylock",
"text" : "Lock",
"keybind" : "l"
},
{
"label" : "logout",
"action" : "loginctl terminate-user $USER",
"text" : "Logout",
"keybind" : "e"
},
{
"label" : "suspend",
"action" : "systemctl suspend",
"text" : "Suspend",
"keybind" : "s"
},
{
"label" : "shutdown",
"action" : "systemctl poweroff",
"text" : "Shutdown",
"keybind" : "d"
},
{
"label" : "reboot",
"action" : "systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
},
{
"label" : "hibernate",
"action" : "systemctl hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
]

View file

@ -2,11 +2,11 @@
background-image: none;
}
window {
background-color: #181b28;
background-color: #WINBG;
}
button {
color: #FFFFFF;
background-color: #181b28;
color: #BTNCOL;
background-color: #BTNBG;
border-style: solid;
border-width: 2px;
background-repeat: no-repeat;
@ -15,7 +15,7 @@ button {
}
button:focus, button:active, button:hover {
background-color: #27ae60;
background-color: #BTNFOCUSBG;
outline-style: none;
}