hyprland config

This commit is contained in:
thatscringebro
2023-09-21 18:37:25 -04:00
parent fd3d6567dc
commit 98f7bd2701
62 changed files with 2843 additions and 0 deletions

30
hyprland/wlogout/layout Normal file
View 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"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
hyprland/wlogout/lock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
hyprland/wlogout/logout.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
hyprland/wlogout/power.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
hyprland/wlogout/sleep.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View 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"));
}