2018-01-22 01:29:48 +00:00
|
|
|
#!/bin/bash
|
2018-03-03 07:36:00 +00:00
|
|
|
|
|
|
|
# Take a screenshot:
|
2018-01-22 01:29:48 +00:00
|
|
|
scrot /tmp/screen.png
|
2018-03-03 07:36:00 +00:00
|
|
|
|
|
|
|
# Create a blur on the shot:
|
|
|
|
convert /tmp/screen.png -paint 1 -swirl 360 /tmp/screen.png
|
|
|
|
|
|
|
|
# Add the lock to the blurred image:
|
2018-01-22 01:29:48 +00:00
|
|
|
[[ -f ~/.config/i3/lock.png ]] && convert /tmp/screen.png ~/.config/i3/lock.png -gravity center -composite -matte /tmp/screen.png
|
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
|
|
|
|
|
|
|
|
# If still locked after 20 seconds, turn off screen.
|
|
|
|
sleep 20 && pgrep i3lock && xset dpms force off
|