initial, no firefox yet :(
This commit is contained in:
BIN
.config/wlogout/icons/exit.png
Normal file
BIN
.config/wlogout/icons/exit.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
BIN
.config/wlogout/icons/lock.png
Normal file
BIN
.config/wlogout/icons/lock.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
BIN
.config/wlogout/icons/power.png
Normal file
BIN
.config/wlogout/icons/power.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.0 KiB |
BIN
.config/wlogout/icons/reload.png
Normal file
BIN
.config/wlogout/icons/reload.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
BIN
.config/wlogout/icons/slwwp.png
Normal file
BIN
.config/wlogout/icons/slwwp.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
30
.config/wlogout/layout
Executable file
30
.config/wlogout/layout
Executable file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"label" : "lock",
|
||||
"action" : "loginctl lock-session",
|
||||
"text" : "Lock",
|
||||
"keybind" : "l"
|
||||
}
|
||||
{
|
||||
"label" : "logout",
|
||||
"action" : "loginctl terminate-user $USER",
|
||||
"text" : "Logout",
|
||||
"keybind" : "e"
|
||||
}
|
||||
{
|
||||
"label" : "shutdown",
|
||||
"action" : "systemctl poweroff",
|
||||
"text" : "Shutdown",
|
||||
"keybind" : "s"
|
||||
}
|
||||
{
|
||||
"label" : "suspend",
|
||||
"action" : "systemctl suspend",
|
||||
"text" : "Sleep",
|
||||
"keybind" : "u"
|
||||
}
|
||||
{
|
||||
"label" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "Reboot",
|
||||
"keybind" : "r"
|
||||
}
|
||||
73
.config/wlogout/style.css
Executable file
73
.config/wlogout/style.css
Executable file
@@ -0,0 +1,73 @@
|
||||
* {
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
window {
|
||||
background-color: rgba(12, 12, 12, 0.05);
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
border-color: #cba6f7;
|
||||
text-decoration-color: #ffffff;
|
||||
color: #FFFFFF;
|
||||
background-color: #313244;
|
||||
border-style: solid none;
|
||||
border-width: 4px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 30%;
|
||||
background-size: 75%;
|
||||
}
|
||||
|
||||
button:first-child {
|
||||
border-top-left-radius: 10px;
|
||||
border-bottom-left-radius: 10px;
|
||||
}
|
||||
|
||||
button:last-child {
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
}
|
||||
|
||||
#lock {
|
||||
border-left-style: solid;
|
||||
background-image: image(url("./icons/lock.png"));
|
||||
}
|
||||
|
||||
#logout {
|
||||
background-image: image(url("./icons/exit.png"));
|
||||
}
|
||||
|
||||
#suspend {
|
||||
background-image: image(url("./icons/slwwp.png"));
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
background-image: image(url("./icons/power.png"));
|
||||
}
|
||||
|
||||
#reboot {
|
||||
border-right-style: solid;
|
||||
background-image: image(url("./icons/reload.png"));
|
||||
}
|
||||
|
||||
#lock:focus {
|
||||
background-color: #d20f39;
|
||||
}
|
||||
|
||||
#logout:focus {
|
||||
background-color: #d79921;
|
||||
}
|
||||
|
||||
#suspend:focus {
|
||||
background-color: #04a5e5;
|
||||
}
|
||||
|
||||
#shutdown:focus {
|
||||
background-color: #40a02b;
|
||||
}
|
||||
|
||||
#reboot:focus {
|
||||
background-color: #8839ef;
|
||||
}
|
||||
Reference in New Issue
Block a user