Finished hacker theme mostly and added some other configs
This commit is contained in:
parent
0c499ecbd6
commit
ad06f5284e
91 changed files with 1928 additions and 3 deletions
BIN
themes/hacker/.config/wlogout/icons/hibernate.png
Normal file
BIN
themes/hacker/.config/wlogout/icons/hibernate.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
themes/hacker/.config/wlogout/icons/logout.png
Normal file
BIN
themes/hacker/.config/wlogout/icons/logout.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
BIN
themes/hacker/.config/wlogout/icons/reboot.png
Normal file
BIN
themes/hacker/.config/wlogout/icons/reboot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.7 KiB |
BIN
themes/hacker/.config/wlogout/icons/shutdown.png
Normal file
BIN
themes/hacker/.config/wlogout/icons/shutdown.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.8 KiB |
BIN
themes/hacker/.config/wlogout/icons/suspend.png
Normal file
BIN
themes/hacker/.config/wlogout/icons/suspend.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
30
themes/hacker/.config/wlogout/layout
Normal file
30
themes/hacker/.config/wlogout/layout
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"label" : "hibernate",
|
||||
"action" : "systemctl hibernate",
|
||||
"text" : "Hibernate",
|
||||
"keybind" : "h"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "swaymsg exit",
|
||||
"text" : "Logout",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "Shutdown",
|
||||
"keybind" : "s"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "systemctl suspend",
|
||||
"text" : "Suspend",
|
||||
"keybind" : "u"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "Reboot",
|
||||
"keybind" : "r"
|
||||
}
|
||||
47
themes/hacker/.config/wlogout/style.css
Normal file
47
themes/hacker/.config/wlogout/style.css
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
* {
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
window {
|
||||
background-color: rgba(20, 21, 20, 0.92);
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0px;
|
||||
margin: 4px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
border-color: #ef934d;
|
||||
background-color: #1e1f1e;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 25%;
|
||||
color: #ef934d;
|
||||
}
|
||||
|
||||
button:focus, button:active, button:hover {
|
||||
border-color: #ef934d;
|
||||
background-color: #2a2b2a;
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
#logout {
|
||||
background-image: image(url("icons/logout.png"));
|
||||
}
|
||||
|
||||
#suspend {
|
||||
background-image: image(url("icons/suspend.png"));
|
||||
}
|
||||
|
||||
#hibernate {
|
||||
background-image: image(url("icons/hibernate.png"));
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
background-image: image(url("icons/shutdown.png"));
|
||||
}
|
||||
|
||||
#reboot {
|
||||
background-image: image(url("icons/reboot.png"));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue