cleanup and rename
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 30s

This commit is contained in:
Satria 2026-03-25 18:34:03 +07:00
commit ee28bb7c42
15 changed files with 71 additions and 73 deletions

View file

@ -0,0 +1,51 @@
{ rice, ... }: {
programs.wlogout = {
enable = true;
layout = [
{
label = "shutdown";
action = "hyprshutdown -t 'Shutting down...' --post-cmd 'systemctl poweroff'";
text = "(S)hutdown";
keybind = "s";
}
{
label = "reboot";
action = "hyprshutdown -t 'Rebooting...' --post-cmd 'systemctl reboot'";
text = "(R)eboot";
keybind = "r";
}
{
label = "hibernate";
action = "systemctl hibernate";
text = "(H)ibernate";
keybind = "h";
}
{
label = "suspend";
action = "systemctl suspend";
text = "Sus(p)end";
keybind = "p";
}
{
label = "logout";
action = "hyprshutdown -t 'Logging Out...' --post-cmd 'uwsm stop'";
text = "L(o)gout";
keybind = "o";
}
{
label = "lock";
action = "loginctl lock-session";
text = "(L)ock";
keybind = "l";
}
];
style = ''
button {
border-width: ${toString rice.borders.size}px;
border-radius: ${toString rice.borders.rounded}px;
margin: ${toString rice.gap.inner}px;
font-family: ${rice.font};
}
'';
};
}