voidrice/.config/i3/lock.sh

24 lines
622 B
Bash
Raw Normal View History

#!/bin/bash
2018-03-03 07:36:00 +00:00
# Approximate timeout rate in milliseconds (checked every 5 seconds).
timeout="10000"
2018-03-03 07:36:00 +00:00
# Take a screenshot:
scrot /tmp/screen.png
2018-03-03 07:36:00 +00:00
2018-06-14 18:48:22 +00:00
# Add the lock to the swirled and blurred image:
[[ -f ~/.config/i3/lock.png ]] && convert /tmp/screen.png -paint 1 -swirl 360 ~/.config/i3/lock.png -gravity center -composite -matte /tmp/screen.png
2018-03-03 07:36:00 +00:00
# Pause music (mocp and mpd):
mocp -P
2018-03-03 07:36:00 +00:00
mpc pause
# Lock it up!
i3lock -e -f -c 000000 -i /tmp/screen.png
# 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