summaryrefslogtreecommitdiff
path: root/home/desktops/hyprland/idle.nix
blob: 0a2b951784a1e10e3d4297c0a8851c746f05f266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{config, ...}: {
  services.hypridle = {
    enable = config.desktops.hyprland.enable;
    systemdTarget = "hyprland-session.target";

    settings = {
      general = {
        lock_cmd = "pidof ${config.default.lockScreen} || ${config.default.lockScreen}";
        before_sleep_cmd = "loginctl lock-session";
        after_sleep_cmd = "hyprctl dispatch dpms on";
        ignore_dbus_inhibit = false;
      };

      listener = [
        # dim screen
        {
          timeout = 150;
          on-timeout = "brightnessctl -s set 10";
          on-resume = "brightnessctl -r";
        }
        # lock
        {
          timeout = 300;
          on-timeout = "loginctl lock-session";
        }
        # turn off screen
        {
          timeout = 350;
          on-timeout = "hyprctl dispatch dpms off";
          on-resume = "hyprctl dispatch dpms on";
        }
      ];
    };
  };
}