dotfiles/home/modules/gui/desktop/hypr/hypridle/config/settings.nix

20 lines
346 B
Nix
Raw Normal View History

2025-01-19 23:40:54 -06:00
{
2025-01-09 02:09:02 -06:00
general = {
2025-01-24 22:56:53 -06:00
after_sleep_cmd = "hyprctl dispatch dpms on";
ignore_dbus_inhibit = false;
lock_cmd = "swaylock";
2025-01-09 02:09:02 -06:00
};
2025-01-24 22:56:53 -06:00
2025-01-09 02:09:02 -06:00
listener = [
{
2025-01-24 22:56:53 -06:00
timeout = 900;
on-timeout = "swaylock";
2025-01-09 02:09:02 -06:00
}
{
2025-01-24 22:56:53 -06:00
timeout = 1800;
on-timeout = "hyprctl dispatch dpms off";
on-resume = "hyprctl dispatch dpms on";
2025-01-09 02:09:02 -06:00
}
];
}