Skip to content

Instantly share code, notes, and snippets.

@agundy
Created May 17, 2014 07:54
Show Gist options
  • Save agundy/50d5d9cf04f3e8788dd8 to your computer and use it in GitHub Desktop.
Save agundy/50d5d9cf04f3e8788dd8 to your computer and use it in GitHub Desktop.
Wallpaper Changer
#!/bin/sh
while true; do
find ~/Pictures/Wallpapers -type f \( -name '*.jpg' -o -name '*.png' \) -print0 |
shuf -n1 -z | xargs -0 feh --bg-scale
sleep 1m
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment