Advertisement
conformist

lock.sh

Apr 17th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. #!/bin/sh -e
  2. # depends i3lock, imagemagick
  3. # Take a screenshot
  4. scrot /tmp/screen_locked.png
  5. # Pixellate it 10x
  6. mogrify -scale 10% -scale 1000% /tmp/screen_locked.png
  7. # Lock screen displaying this image.
  8. i3lock -i /tmp/screen_locked.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement