2018-01-21 18:29:48 -07:00
|
|
|
#!/bin/bash
|
2018-03-03 00:36:00 -07:00
|
|
|
|
2018-05-18 08:58:13 -07:00
|
|
|
# Approximate timeout rate in milliseconds (checked every 5 seconds).
|
|
|
|
timeout="10000"
|
|
|
|
|
2018-06-19 16:20:38 -03:00
|
|
|
# Take a screenshot of every screen available:
|
2018-07-01 14:33:23 +02:00
|
|
|
scrot -m -z /tmp/lock.png
|
2018-06-19 16:20:38 -03:00
|
|
|
xdpyinfo -ext XINERAMA | sed '/^ head #/!d;s///' |
|
|
|
|
{
|
2018-07-05 13:30:55 +02:00
|
|
|
cmd="convert /tmp/lock.png"
|
|
|
|
cmdend=""
|
2018-06-19 16:20:38 -03:00
|
|
|
while IFS=' :x@,' read i w h x y; do
|
2018-07-05 13:30:55 +02:00
|
|
|
cmd+=" -region ${w}x$h+$x+$y -paint 1 -swirl 360"
|
|
|
|
xc=$((x+(w/2)-79))
|
|
|
|
yc=$((y+(h/2)-79))
|
2018-07-29 13:43:43 -04:00
|
|
|
cmdend+=" ~/.scripts/lock.png -geometry +${xc}+${yc} -composite -matte"
|
2018-06-19 16:20:38 -03:00
|
|
|
done
|
2018-07-05 13:30:55 +02:00
|
|
|
cmd+="${cmdend} /tmp/screen.png"
|
2018-06-19 16:20:38 -03:00
|
|
|
|
2018-07-01 14:33:23 +02:00
|
|
|
eval $cmd
|
2018-07-29 13:43:43 -04:00
|
|
|
} &
|
|
|
|
|
|
|
|
prompt "Are you sure you want to lock the computer?" "" || exit
|
2018-03-03 00:36:00 -07:00
|
|
|
|
|
|
|
# Pause music (mocp and mpd):
|
2018-01-21 18:29:48 -07:00
|
|
|
mocp -P
|
2018-03-03 00:36:00 -07:00
|
|
|
mpc pause
|
2018-07-29 13:43:43 -04:00
|
|
|
pauseallmpv
|
2018-03-03 00:36:00 -07:00
|
|
|
|
|
|
|
# Lock it up!
|
|
|
|
i3lock -e -f -c 000000 -i /tmp/screen.png
|
|
|
|
|
2018-05-18 08:58:13 -07:00
|
|
|
# If still locked after $timeout milliseconds, turn off screen.
|
|
|
|
while [[ $(pgrep -x i3lock) ]]; do
|
2018-06-19 16:20:38 -03:00
|
|
|
[[ $timeout -lt $(xssstate -i) ]] && xset dpms force off
|
|
|
|
sleep 5
|
2018-05-18 08:58:13 -07:00
|
|
|
done
|