Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh -e
- # depends i3lock, imagemagick
- # Take a screenshot
- scrot /tmp/screen_locked.png
- # Pixellate it 10x
- mogrify -scale 10% -scale 1000% /tmp/screen_locked.png
- # Lock screen displaying this image.
- i3lock -i /tmp/screen_locked.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement