style(hypr): update hyprlock config
This commit is contained in:
BIN
wlogout/icons/hibernate.png
Normal file
BIN
wlogout/icons/hibernate.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
BIN
wlogout/icons/lock.png
Normal file
BIN
wlogout/icons/lock.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.9 KiB |
BIN
wlogout/icons/logout.png
Normal file
BIN
wlogout/icons/logout.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
wlogout/icons/reboot.png
Normal file
BIN
wlogout/icons/reboot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
BIN
wlogout/icons/shutdown.png
Normal file
BIN
wlogout/icons/shutdown.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
wlogout/icons/suspend.png
Normal file
BIN
wlogout/icons/suspend.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
36
wlogout/layout
Normal file
36
wlogout/layout
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"label" : "lock",
|
||||
"action" : "hyprlock",
|
||||
"text" : "Lock",
|
||||
"keybind" : "l"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "hyprctl dispatch exit",
|
||||
"text" : "Logout",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "systemctl suspend",
|
||||
"text" : "Suspend",
|
||||
"keybind" : "u"
|
||||
}
|
||||
{
|
||||
"label" : "hibernate",
|
||||
"action" : "systemctl hibernate",
|
||||
"text" : "Hibernate",
|
||||
"keybind" : "h"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "Shutdown",
|
||||
"keybind" : "s"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "Reboot",
|
||||
"keybind" : "r"
|
||||
}
|
||||
43
wlogout/style.css
Normal file
43
wlogout/style.css
Normal file
@@ -0,0 +1,43 @@
|
||||
window {
|
||||
font-family: "Lexend";
|
||||
font-size: 12pt;
|
||||
color: #cdd6f4;
|
||||
background-color: rgba(30, 30, 46, 0.9);
|
||||
}
|
||||
|
||||
button {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 25%;
|
||||
border-style: solid;
|
||||
border-width: 3px;
|
||||
background-color: rgba(12, 12, 12, 0.3);
|
||||
border-color: #313244;
|
||||
margin: 5px;
|
||||
border-radius: 20px;
|
||||
transition: all 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
#lock {
|
||||
background-image: image(url("icons/lock.png"));
|
||||
}
|
||||
|
||||
#logout {
|
||||
background-image: image(url("icons/logout.png"));
|
||||
}
|
||||
|
||||
#suspend {
|
||||
background-image: image(url("icons/suspend.png"));
|
||||
}
|
||||
|
||||
#hibernate {
|
||||
background-image: image(url("icons/hibernate.png"));
|
||||
}
|
||||
|
||||
#reboot {
|
||||
background-image: image(url("icons/reboot.png"));
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
background-image: image(url("icons/shutdown.png"));
|
||||
}
|
||||
Reference in New Issue
Block a user