2018-01-22 01:29:48 +00:00
|
|
|
#!/bin/bash
|
2018-03-03 07:36:00 +00:00
|
|
|
|
2018-08-04 21:54:33 +00:00
|
|
|
rm -f /tmp/locked.png
|
2018-05-18 15:58:13 +00:00
|
|
|
|
2018-08-04 21:54:33 +00:00
|
|
|
# If `imagemagick` is not installed, use a blank screen.
|
|
|
|
[[ -f /usr/bin/convert ]] &&
|
|
|
|
scrot -m -z /tmp/base.png &&
|
|
|
|
pgrep -x dunst && notify-send -i ~/.scripts/lock.png "Locking computer..." &&
|
|
|
|
convert /tmp/base.png -blur 0x8 /tmp/locked.png
|
2018-06-19 19:20:38 +00:00
|
|
|
|
2018-08-04 21:54:33 +00:00
|
|
|
# Pause music (mocp, mpd and send the pause key to all mpv videos):
|
|
|
|
mocp -P &>/dev/null
|
|
|
|
mpc pause &>/dev/null
|
|
|
|
pauseallmpv &>/dev/null
|
2018-07-29 17:43:43 +00:00
|
|
|
|
2018-08-04 21:54:33 +00:00
|
|
|
i3lock -e -f -c 000000 -i /tmp/locked.png
|
2018-03-03 07:36:00 +00:00
|
|
|
|
2018-08-04 21:54:33 +00:00
|
|
|
# In five seconds, turn off display unless key press in last 4 seconds.
|
|
|
|
sleep 5 && [[ 4000 -lt $(xssstate -i) ]] && pgrep -x i3lock && xset dpms force off
|