mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
20 lines
346 B
Nix
20 lines
346 B
Nix
|
|
{
|
||
|
|
general = {
|
||
|
|
after_sleep_cmd = "hyprctl dispatch dpms on";
|
||
|
|
ignore_dbus_inhibit = false;
|
||
|
|
lock_cmd = "swaylock";
|
||
|
|
};
|
||
|
|
|
||
|
|
listener = [
|
||
|
|
{
|
||
|
|
timeout = 900;
|
||
|
|
on-timeout = "swaylock";
|
||
|
|
}
|
||
|
|
{
|
||
|
|
timeout = 1800;
|
||
|
|
on-timeout = "hyprctl dispatch dpms off";
|
||
|
|
on-resume = "hyprctl dispatch dpms on";
|
||
|
|
}
|
||
|
|
];
|
||
|
|
}
|