Martin Berg Alstad 51b30405c5
🧰 Styled Hyprlock
- Commented out listener in Hypridle that caused a bug?
- Activated btop
2024-12-31 17:24:33 +01:00

27 lines
611 B
Nix

{ ... }:
{
services.hypridle = {
enable = true;
settings = {
general = {
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "pidof hyprlock || hyprlock"; # Avoid running multiple instances of hyprlock
};
listener = [
{
timeout = 900; # 15 min
on-timeout = "hyprlock";
}
# {
# timeout = 1200;
# on-timeout = "hyprctl dispatch dpms off";
# on-resume = "hyprctl dispatch dpms on";
# }
];
};
};
}