Skip to content

Instantly share code, notes, and snippets.

@jmmadruga
Created October 24, 2013 13:16
Show Gist options
  • Save jmmadruga/7137116 to your computer and use it in GitHub Desktop.
Save jmmadruga/7137116 to your computer and use it in GitHub Desktop.
Just a small script to rotate Wallpapers using feh
#!/bin/sh
sleep 5m
find ~/Imagens/Wallpapers/ -type f \( -name '*.jpg' -o -name '*.png' \) -print0 |
shuf -n1 -z | xargs -0 feh --bg-scale
@serafdev
Copy link

👍 I added background loop support on my fork

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment