hyprland config
30
hyprland/wlogout/layout
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"label" : "lock",
|
||||
"action" : "swaylock",
|
||||
"text" : "Lock",
|
||||
"keybind" : "l"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "Reboot",
|
||||
"keybind" : "r"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "Shutdown",
|
||||
"keybind" : "s"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "hyprctl dispatch exit 0",
|
||||
"text" : "Logout",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "systemctl suspend",
|
||||
"text" : "Suspend",
|
||||
"keybind" : "u"
|
||||
}
|
||||
BIN
hyprland/wlogout/lock-hover.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
hyprland/wlogout/lock.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
hyprland/wlogout/logout-hover.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
hyprland/wlogout/logout.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
hyprland/wlogout/power-hover.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
hyprland/wlogout/power.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
hyprland/wlogout/restart-hover.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
hyprland/wlogout/restart.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
hyprland/wlogout/sleep-hover.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
hyprland/wlogout/sleep.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
63
hyprland/wlogout/style.css
Normal file
@@ -0,0 +1,63 @@
|
||||
window {
|
||||
font-family: CaskaydiaCove Nerd Font, monospace;
|
||||
font-size: 12pt;
|
||||
color: black;
|
||||
background-color: rgba(0, 0, 0, 1);
|
||||
}
|
||||
|
||||
button {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 20%;
|
||||
border: none;
|
||||
color: #3FB5A3;
|
||||
text-shadow: none;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
margin: 5px;
|
||||
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
button:focus {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
color: #5AE058;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
#lock {
|
||||
background-image: image(url("./lock-hover.png"));
|
||||
}
|
||||
#lock:focus {
|
||||
background-image: image(url("./lock.png"));
|
||||
}
|
||||
|
||||
#logout {
|
||||
background-image: image(url("./logout-hover.png"));
|
||||
}
|
||||
#logout:focus {
|
||||
background-image: image(url("./logout.png"));
|
||||
}
|
||||
|
||||
#suspend {
|
||||
background-image: image(url("./sleep-hover.png"));
|
||||
}
|
||||
#suspend:focus {
|
||||
background-image: image(url("./sleep.png"));
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
background-image: image(url("./power-hover.png"));
|
||||
}
|
||||
#shutdown:focus {
|
||||
background-image: image(url("./power.png"));
|
||||
}
|
||||
|
||||
#reboot {
|
||||
background-image: image(url("./restart-hover.png"));
|
||||
}
|
||||
#reboot:focus {
|
||||
background-image: image(url("./restart.png"));
|
||||
}
|
||||