2023-08-30 16:35:25 +02:00
|
|
|
{ ... }: {
|
|
|
|
xdg.configFile."wlogout/layout" = {
|
|
|
|
enable = true;
|
|
|
|
target = "./wlogout/layout";
|
|
|
|
text = ''
|
|
|
|
{
|
2023-08-30 17:04:36 +02:00
|
|
|
"label" : "lock",
|
|
|
|
"action" : "swaylock",
|
|
|
|
"text" : "Lock",
|
2023-08-30 16:35:25 +02:00
|
|
|
"keybind" : "l"
|
|
|
|
}
|
|
|
|
{
|
2023-08-30 17:04:36 +02:00
|
|
|
"label" : "hibernate",
|
|
|
|
"action" : "systemctl hibernate",
|
|
|
|
"text" : "Hibernate",
|
2023-08-30 16:35:25 +02:00
|
|
|
"keybind" : "h"
|
|
|
|
}
|
|
|
|
{
|
2023-08-30 17:04:36 +02:00
|
|
|
"label" : "logout",
|
|
|
|
"action" : "loginctl terminate-user $USER",
|
|
|
|
"text" : "Logout",
|
2023-08-30 16:35:25 +02:00
|
|
|
"keybind" : "e"
|
|
|
|
}
|
|
|
|
{
|
2023-08-30 17:04:36 +02:00
|
|
|
"label" : "shutdown",
|
|
|
|
"action" : "systemctl poweroff",
|
|
|
|
"text" : "Shutdown",
|
2023-08-30 16:35:25 +02:00
|
|
|
"keybind" : "s"
|
|
|
|
}
|
|
|
|
{
|
2023-08-30 17:04:36 +02:00
|
|
|
"label" : "suspend",
|
|
|
|
"action" : "systemctl suspend",
|
|
|
|
"text" : "Suspend",
|
2023-08-30 16:35:25 +02:00
|
|
|
"keybind" : "u"
|
|
|
|
}
|
|
|
|
{
|
2023-08-30 17:04:36 +02:00
|
|
|
"label" : "reboot",
|
|
|
|
"action" : "systemctl reboot",
|
|
|
|
"text" : "Reboot",
|
2023-08-30 16:35:25 +02:00
|
|
|
"keybind" : "r"
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
xdg.configFile."wlogout/style.css" = {
|
|
|
|
enable = true;
|
|
|
|
target = "./wlogout/style.css";
|
|
|
|
text = ''
|
|
|
|
* {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
window {
|
|
|
|
background-color: rgba(50, 48, 47, 0.8);
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
color: #d5c4a1;
|
|
|
|
background-color: #1E1E1E;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 2px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 25%;
|
2023-08-30 16:40:54 +02:00
|
|
|
font-size: 96px;
|
2023-08-30 16:35:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button:focus, button:active, button:hover {
|
|
|
|
background-color: #a89984;
|
2023-08-30 17:04:36 +02:00
|
|
|
outline-style: none;
|
2023-08-30 16:35:25 +02:00
|
|
|
}
|
|
|
|
|
2023-08-30 17:04:36 +02:00
|
|
|
#lock { background-image: url("/etc/nixos/git/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/wlogout/lock.svg") ; }
|
|
|
|
#logout { background-image: url("/etc/nixos/git/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/wlogout/logout.svg") ; }
|
|
|
|
#suspend { background-image: url("/etc/nixos/git/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/wlogout/suspend.svg") ; }
|
|
|
|
#hibernate { background-image: url("/etc/nixos/git/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/wlogout/hibernate.svg") ; }
|
|
|
|
#shutdown { background-image: url("/etc/nixos/git/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/wlogout/shutdown.svg") ; }
|
|
|
|
#reboot { background-image: url("/etc/nixos/git/home-manager/hosts/nixos-laptop/desktops/hyprland/gruvbox/wlogout/reboot.svg") ; }
|
2023-08-30 16:35:25 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|