Skip to content

Instantly share code, notes, and snippets.

@KDercksen
Created March 2, 2018 22:44
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 KDercksen/027bdcf34320f0ab8fbaf74b2779d2c9 to your computer and use it in GitHub Desktop.
Save KDercksen/027bdcf34320f0ab8fbaf74b2779d2c9 to your computer and use it in GitHub Desktop.
Wallpaper cycler
#!/usr/bin/env bash
set -e
WPDIR = $1
WAITTIME = $2
while true; do
feh --bg-scale --no-xinerama $(find "$WPDIR" -type f | shuf -n1)
sleep $WAITTIME
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment