diff options
author | Adam Stück <adam@adast.xyz> | 2023-03-04 15:13:52 +0100 |
---|---|---|
committer | Adam Stück <adam@adast.xyz> | 2023-03-04 15:13:52 +0100 |
commit | 8c87af8b46cb4f3394a8f127da838c0ac6f9db2f (patch) | |
tree | 0804ae4ce0c5dca4b1cd0648e3f491f0b05a60bc /.local/bin/lock | |
parent | 6bedb1fdee1e825d4dc4103d497f167d87060198 (diff) |
lock: set dpms to 10 on lock
Screen turns off after 10 seconds of inactivity when locked.
Diffstat (limited to '.local/bin/lock')
-rwxr-xr-x | .local/bin/lock | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/lock b/.local/bin/lock index 191c876..9595b81 100755 --- a/.local/bin/lock +++ b/.local/bin/lock @@ -1,6 +1,6 @@ #!/bin/sh -xset dpms 5 +xset dpms 10 xidlehook \ --detect-sleep --not-when-audio --not-when-fullscreen \ --timer 60 'systemctl suspend' '' & |