Skip to content

Instantly share code, notes, and snippets.

@mboeh
Created July 13, 2012 21:51
Show Gist options
  • Save mboeh/3107781 to your computer and use it in GitHub Desktop.
Save mboeh/3107781 to your computer and use it in GitHub Desktop.
backdrop scripts
#!/bin/sh
# backdroppify - sizes an image to the minimum size which will fill your entire screen & trims overflow
bgsize=`xwininfo -root | grep -- -geometry | cut -d' ' -f4 | cut -d+ -f1`
convert $1 -resize $bgsize^ -gravity center -extent $bgsize ~/.backdrop.jpg
set-backdrop
#!/bin/sh
backdroppify `find ~/backdrops -type f | sort -R | head -1`
#!/bin/sh
display -window root ~/.backdrop.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment