mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
Refactor timeout values for clarity
This commit is contained in:
parent
d8226d7eb1
commit
a00957eeeb
1 changed files with 4 additions and 4 deletions
|
|
@ -22,21 +22,21 @@
|
|||
|
||||
listener = [
|
||||
{
|
||||
timeout = 300;
|
||||
timeout = 5 * 60;
|
||||
on-timeout = "brightnessctl --save --exponent set 10%";
|
||||
on-resume = "brightnessctl --restore";
|
||||
}
|
||||
{
|
||||
timeout = 600;
|
||||
timeout = 10 * 60;
|
||||
on-timeout = "hyprctl dispatch dpms off";
|
||||
on-resume = "hyprctl dispatch dpms on";
|
||||
}
|
||||
{
|
||||
timeout = 610;
|
||||
timeout = 10 * 60 + 10;
|
||||
on-timeout = "loginctl lock-session";
|
||||
}
|
||||
{
|
||||
timeout = 1800;
|
||||
timeout = 30 * 60;
|
||||
on-timeout = "systemctl sleep";
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue