Browse Source

woops forgot to add wlgout folder

pull/8/head
JaKooLit 2 years ago
parent
commit
f33963b0b9
  1. 30
      config/wlogout/layout
  2. BIN
      config/wlogout/lock-hover.png
  3. BIN
      config/wlogout/lock.png
  4. BIN
      config/wlogout/logout-hover.png
  5. BIN
      config/wlogout/logout.png
  6. BIN
      config/wlogout/power-hover.png
  7. BIN
      config/wlogout/power.png
  8. BIN
      config/wlogout/restart-hover.png
  9. BIN
      config/wlogout/restart.png
  10. BIN
      config/wlogout/sleep-hover.png
  11. BIN
      config/wlogout/sleep.png
  12. 113
      config/wlogout/style.css

30
config/wlogout/layout

@ -0,0 +1,30 @@
{
"label" : "lock",
"action" : "$HOME/.config/hypr/scripts/LockScreen.sh",
"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
config/wlogout/lock-hover.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
config/wlogout/lock.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
config/wlogout/logout-hover.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
config/wlogout/logout.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
config/wlogout/power-hover.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
config/wlogout/power.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
config/wlogout/restart-hover.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

BIN
config/wlogout/restart.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

BIN
config/wlogout/sleep-hover.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
config/wlogout/sleep.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

113
config/wlogout/style.css

@ -0,0 +1,113 @@
window {
font-family: monospace;
font-size: 14pt;
color: #cdd6f4; /* text */
background-color: rgba(30, 30, 46, 0.5);
}
button {
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
border: none;
background-color: rgba(30, 30, 46, 0);
margin: 5px;
animation: gradient_f 20s ease-in infinite;
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
button:hover#lock {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-right : 30px;
margin-bottom : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#logout {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-right : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#shutdown {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-left : 20px;
margin-bottom : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#reboot {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-left : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#suspend {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-left : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:focus {
background-color: rgba(180, 190, 254, 0.3);
color: #1e1e2e;
background-size: 25%;
margin-left : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
#lock {
background-image: image(url("./lock.png"));
}
#lock:focus {
background-image: image(url("./lock-hover.png"));
}
#logout {
background-image: image(url("./logout.png"));
}
#logout:focus {
background-image: image(url("./logout-hover.png"));
}
#suspend {
background-image: image(url("./sleep.png"));
}
#suspend:focus {
background-image: image(url("./sleep-hover.png"));
}
#shutdown {
background-image: image(url("./power.png"));
}
#shutdown:focus {
background-image: image(url("./power-hover.png"));
}
#reboot {
background-image: image(url("./restart.png"));
}
#reboot:focus {
background-image: image(url("./restart-hover.png"));
}
Loading…
Cancel
Save