initial commit

This commit is contained in:
smayzy
2025-02-25 20:41:09 +01:00
parent df6886f73d
commit 5efc78497f
22 changed files with 806 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"label" : "logout",
"action" : "sleep 1; hyprctl dispatch exit",
"text" : "Logout",
"keybind" : "l"
}
{
"label" : "shutdown",
"action" : "systemctl poweroff",
"text" : "Shutdown",
"keybind" : "s"
}
{
"label" : "reboot",
"action" : "systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

+44
View File
@@ -0,0 +1,44 @@
* {
background-image: none;
box-shadow: none;
}
window {
background-color: rgba(30, 30, 46, 0.5);
font-size: 14px;
color: #cdd6f4;
}
button {
border-radius: 0;
border-color: black;
text-decoration-color: #FFFFFF;
color: #FFFFFF;
background-color: #1E1E1E;
border-style: solid;
border-width: 0px;
border-radius: 20%;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
margin: 30px;
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
button:focus {
background-color: #cba6f7;
outline-style: none;
background-size: 35%;
}
#logout {
background-image: image(url("logout.png"));
}
#shutdown {
background-image: image(url("power.png"));
}
#reboot {
background-image: image(url("restart.png"));
}
+49
View File
@@ -0,0 +1,49 @@
* {
background-image: none;
box-shadow: none;
}
window {
background-color: rgba(30, 30, 46, 0.5);
font-size: 14px;
color: #cdd6f4;
}
button {
border-radius: 0;
border-color: black;
text-decoration-color: #FFFFFF;
color: #FFFFFF;
background-color: #1E1E1E;
border-style: solid;
border-width: 1px;
border-radius: 50% / 15%;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
margin: 5px;
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
button:hover{
background-color: #cba6f7;
outline-style: none;
}
button:focus, button:active, {
background-color: #cba6f7;
outline-style: none;
background-size: 40%;
}
#logout {
background-image: image(url("/usr/share/wlogout/icons/logout.png"), url("/usr/local/share/wlogout/icons/logout.png"));
}
#shutdown {
background-image: image(url("/usr/share/wlogout/icons/shutdown.png"), url("/usr/local/share/wlogout/icons/shutdown.png"));
}
#reboot {
background-image: image(url("/usr/share/wlogout/icons/reboot.png"), url("/usr/local/share/wlogout/icons/reboot.png"));
}