lock script now turns screen of after X seconds
This commit is contained in:
parent
32a21a7e18
commit
6e1134afab
1 changed files with 8 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Approximate timeout rate in milliseconds (checked every 5 seconds).
|
||||
timeout="10000"
|
||||
|
||||
# Take a screenshot:
|
||||
scrot /tmp/screen.png
|
||||
|
||||
|
@ -16,5 +19,8 @@ mpc pause
|
|||
# Lock it up!
|
||||
i3lock -e -f -c 000000 -i /tmp/screen.png
|
||||
|
||||
# If still locked after 20 seconds, turn off screen.
|
||||
sleep 20 && pgrep i3lock && xset dpms force off
|
||||
# If still locked after $timeout milliseconds, turn off screen.
|
||||
while [[ $(pgrep -x i3lock) ]]; do
|
||||
[[ $timeout -lt $(xssstate -i) ]] && xset dpms force off
|
||||
sleep 5
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue