Add wlogout dotfiles

This commit is contained in:
Jeena 2025-08-31 10:35:10 +09:00
parent dd77042231
commit f709379d57
9 changed files with 134 additions and 0 deletions

52
wlogout/style.css Normal file
View file

@ -0,0 +1,52 @@
* {
background-image: none;
box-shadow: none;
}
window {
background-image: url("../hypr/wallpapers/Purple-blurred.jpg");
}
button {
font-family: "JetBrainsMono Nerd Font Mono";
border-color: #89b4fa;
color: rgba(213, 93, 124, 0.933);
background-color: rgba(0, 0, 0, 0.6);
border: 3px solid rgba(89, 89, 89, 0.667);
border-radius: 8px;
background-repeat: no-repeat;
background-position: 50% 45%;
background-size: 18%;
margin: 13px;
}
button:hover {
/* 20% Overlay 2, 80% mantle */
background-color: rgba(0, 0, 0, 0.9);
border-color: rgba(213, 93, 124, 0.933);
outline-style: none;
}
#lock {
background-image: url("icons/lock.svg");
}
#logout {
background-image: url("icons/logout.svg");
}
#suspend {
background-image: url("icons/suspend.svg");
}
#hibernate {
background-image: url("icons/hibernate.svg");
}
#shutdown {
background-image: url("icons/shutdown.svg");
}
#reboot {
background-image: url("icons/reboot.svg");
}