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-05 11:30:55 +00:00
|
|
|
cmd="convert /tmp/lock.png"
|
|
|
|
cmdend=""
|
2018-06-19 19:20:38 +00:00
|
|
|
while IFS=' :x@,' read i w h x y; do
|
2018-07-05 11:30:55 +00: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 17:43:43 +00:00
|
|
|
cmdend+=" ~/.scripts/lock.png -geometry +${xc}+${yc} -composite -matte"
|
2018-06-19 19:20:38 +00:00
|
|
|
done
|
2018-07-05 11:30:55 +00:00
|
|
|
cmd+="${cmdend} /tmp/screen.png"
|
2018-06-19 19:20:38 +00:00
|
|
|
|
2018-07-01 12:33:23 +00:00
|
|
|
eval $cmd
|
2018-07-29 17:43:43 +00:00
|
|
|
} &
|
|
|
|
|
|
|
|
prompt "Are you sure you want to lock the computer?" "" || exit
|
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
|
2018-07-29 17:43:43 +00:00
|
|
|
pauseallmpv
|
2018-03-03 07:36:00 +00:00
|
|
|
|
|
|
|
# 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
|