Move all config files to config directory and add corresponding changes to bootstrap script
This commit is contained in:
24
config/wlogout/layout
Normal file
24
config/wlogout/layout
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"label" : "lock",
|
||||
"action" : "swaylock",
|
||||
"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" : "reboot",
|
||||
"action" : "systemctl reboot",
|
||||
"text" : "Reboot",
|
||||
"keybind" : "r"
|
||||
}
|
||||
66
config/wlogout/style.css
Normal file
66
config/wlogout/style.css
Normal file
@@ -0,0 +1,66 @@
|
||||
* {
|
||||
background-image: none;
|
||||
}
|
||||
window {
|
||||
background-color: #191e2a;
|
||||
}
|
||||
button {
|
||||
color: #cbccc6;
|
||||
border: none;
|
||||
background-color: #202734;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 20%;
|
||||
font-size: 15px;
|
||||
box-shadow: 0 5px 4px 4px rgba(0, 0, 0, 0.1);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
button:focus,
|
||||
button:active,
|
||||
button:hover {
|
||||
background-color: #ffa759;
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
#lock {
|
||||
background-image: image(
|
||||
url("/usr/share/wlogout/icons/lock.png"),
|
||||
url("/usr/local/share/wlogout/icons/lock.png")
|
||||
);
|
||||
}
|
||||
|
||||
#logout {
|
||||
background-image: image(
|
||||
url("/usr/share/wlogout/icons/logout.png"),
|
||||
url("/usr/local/share/wlogout/icons/logout.png")
|
||||
);
|
||||
}
|
||||
|
||||
#suspend {
|
||||
background-image: image(
|
||||
url("/usr/share/wlogout/icons/suspend.png"),
|
||||
url("/usr/local/share/wlogout/icons/suspend.png")
|
||||
);
|
||||
}
|
||||
|
||||
#hibernate {
|
||||
background-image: image(
|
||||
url("/usr/share/wlogout/icons/hibernate.png"),
|
||||
url("/usr/local/share/wlogout/icons/hibernate.png")
|
||||
);
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
background-image: image(
|
||||
url("/usr/share/wlogout/icons/shutdown.png"),
|
||||
url("/usr/local/share/wlogout/icons/shutdown.png")
|
||||
);
|
||||
}
|
||||
|
||||
#reboot {
|
||||
background-image: image(
|
||||
url("/usr/share/wlogout/icons/reboot.png"),
|
||||
url("/usr/local/share/wlogout/icons/reboot.png")
|
||||
);
|
||||
}
|
||||
1
config/wlogout/wlogout
Symbolic link
1
config/wlogout/wlogout
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/daniil/dotfiles/config/wlogout
|
||||
Reference in New Issue
Block a user