forked from Shinonome/dots-hyprland
Initial commit
This commit is contained in:
Executable
+36
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"label" : "lock",
|
||||
"action" : "gtklock",
|
||||
"text" : "lock",
|
||||
"keybind" : "l"
|
||||
}
|
||||
{
|
||||
"label" : "hibernate",
|
||||
"action" : "systemctl hibernate",
|
||||
"text" : "save",
|
||||
"keybind" : "h"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "loginctl terminate-user $USER",
|
||||
"text" : "logout",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "power_settings_new",
|
||||
"keybind" : "s"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "systemctl suspend",
|
||||
"text" : "bedtime",
|
||||
"keybind" : "u"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "restart_alt",
|
||||
"keybind" : "r"
|
||||
}
|
||||
Executable
BIN
Binary file not shown.
|
After Width: | Height: | Size: 132 KiB |
Executable
+27
@@ -0,0 +1,27 @@
|
||||
* {
|
||||
all: unset;
|
||||
background-image: none;
|
||||
transition: 400ms cubic-bezier(0.05, 0.7, 0.1, 1);
|
||||
}
|
||||
|
||||
window {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
background-image: url('./noise.png');
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user