2018-01-22 01:29:48 +00:00
|
|
|
#!/bin/bash
|
2018-03-03 07:36:00 +00:00
|
|
|
|
2018-05-18 15:58:13 +00:00
|
|
|
# Approximate timeout rate in milliseconds (checked every 5 seconds).
|
|
|
|
timeout="10000"
|
|
|
|
|
2018-06-19 19:20:38 +00:00
|
|
|
# Take a screenshot of every screen available:
|
2018-07-01 12:33:23 +00:00
|
|
|
scrot -m -z /tmp/lock.png
|
2018-06-19 19:20:38 +00:00
|
|
|
xdpyinfo -ext XINERAMA | sed '/^ head #/!d;s///' |
|
|
|
|
{
|
2018-07-01 12:33:23 +00:00
|
|
|
cmd="convert"
|
2018-06-19 19:20:38 +00:00
|
|
|
while IFS=' :x@,' read i w h x y; do
|
2018-07-01 12:33:23 +00:00
|
|
|
cmd+=" /tmp/lock.png -paint 1 -swirl 360 -crop ${w}x$h+$x+$y -geometry ${w}x$h+$x+$y ~/.config/i3/lock.png -gravity center -composite -matte"
|
2018-06-19 19:20:38 +00:00
|
|
|
done
|
2018-07-01 12:33:23 +00:00
|
|
|
cmd+=" /tmp/screen.png"
|
2018-06-19 19:20:38 +00:00
|
|
|
|
2018-07-01 12:33:23 +00:00
|
|
|
eval $cmd
|
2018-06-19 19:20:38 +00:00
|
|
|
}
|
2018-03-03 07:36:00 +00:00
|
|
|
|
|
|
|
# Pause music (mocp and mpd):
|
2018-01-22 01:29:48 +00:00
|
|
|
mocp -P
|
2018-03-03 07:36:00 +00:00
|
|
|
mpc pause
|
|
|
|
|
|
|
|
# Lock it up!
|
|
|
|
i3lock -e -f -c 000000 -i /tmp/screen.png
|
|
|
|
|
2018-05-18 15:58:13 +00:00
|
|
|
# If still locked after $timeout milliseconds, turn off screen.
|
|
|
|
while [[ $(pgrep -x i3lock) ]]; do
|
2018-06-19 19:20:38 +00:00
|
|
|
[[ $timeout -lt $(xssstate -i) ]] && xset dpms force off
|
|
|
|
sleep 5
|
2018-05-18 15:58:13 +00:00
|
|
|
done
|