1
0
Fork 0
dotfiles2000/dotfiles/my-binaries/dot-bin/screenlock.sh
2024-10-31 22:09:39 +01:00

16 lines
512 B
Bash
Executable file

#!/bin/sh -e
## Take a screenshot and create a lockscreen
rm -f /tmp/screen_locked.png
scrot /tmp/screen_locked.png
mogrify -scale 10% -scale 1000% /tmp/screen_locked.png
#convert /tmp/screen_locked.png -swirl 360 -paint 1 /tmp/screen_locked.png
## Lock the gnome-keyring
#test -x ~/.bin/lock-keyring && ~/.bin/lock-keyring
## Lock screen displaying this image.
i3lock --show-failed-attempts --image=/tmp/screen_locked.png
## Turn the screen off after a delay.
sleep 300; pgrep i3lock && xset dpms force off