Added wlogout

This commit is contained in:
datalore 2023-12-04 12:16:55 +01:00
parent 5b871f8225
commit beb292462d
4 changed files with 91 additions and 1 deletions

View File

@ -7,7 +7,7 @@
// Choose the order of the modules
"modules-left": ["hyprland/workspaces", "custom/media"],
"modules-center": ["hyprland/window"],
"modules-right": ["pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "battery", "clock", "tray"],
"modules-right": ["pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "battery", "clock", "tray", "custom/wlogout"],
// Modules configuration
// "sway/workspaces": {
// "disable-scroll": true,
@ -110,6 +110,11 @@
}
// "on-click": "pavucontrol"
},
"custom/wlogout": {
"format": "",
"on-click": "wlogout",
"tooltip": false
},
"custom/media": {
"format": "{icon} {}",
"return-type": "json",

View File

@ -92,6 +92,11 @@ button:hover {
color: #ffffff;
}
#custom-wlogout {
padding-right: 10px;
color: #ffffff;
}
#window,
#workspaces {
margin: 0 4px;

36
.config/wlogout/layout Normal file
View File

@ -0,0 +1,36 @@
{
"label" : "lock",
"action" : "swaylock",
"text" : "Lock",
"keybind" : "l"
}
{
"label" : "hibernate",
"action" : "systemctl hibernate",
"text" : "Hibernate",
"keybind" : "h"
}
{
"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" : "Suspend",
"keybind" : "u"
}
{
"label" : "reboot",
"action" : "systemctl reboot",
"text" : "Reboot",
"keybind" : "r"
}

44
.config/wlogout/style.css Normal file
View File

@ -0,0 +1,44 @@
* {
background-image: none;
}
window {
background-color: rgba(12, 12, 12, 0.9);
}
button {
color: #FFFFFF;
background-color: #1E1E1E;
border-style: solid;
border-width: 2px;
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
}
button:focus, button:active, button:hover {
background-color: #00CDCD;
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"));
}