Skip to content

Instantly share code, notes, and snippets.

@streetturtle
Last active March 9, 2019 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save streetturtle/83beabdc4c78e5d92b41ec5866e5072a to your computer and use it in GitHub Desktop.
Save streetturtle/83beabdc4c78e5d92b41ec5866e5072a to your computer and use it in GitHub Desktop.
Make screenshot, pixelate, save.
#!/usr/bin/env bash
ffmpeg -loglevel panic\
-f x11grab\
-video_size $(xdpyinfo | grep dimensions | sed -r 's/^[^0-9]*([0-9]+x[0-9]+).*$/\1/')\
-y -i :0.0\
-vf frei0r=pixeliz0r\
-vframes 1\
/tmp/i3lock.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment