Skip to content

Instantly share code, notes, and snippets.

@mikebarkmin
Created April 13, 2017 18:01
Show Gist options
  • Save mikebarkmin/c940022d1cdf3652859f20c6e148e840 to your computer and use it in GitHub Desktop.
Save mikebarkmin/c940022d1cdf3652859f20c6e148e840 to your computer and use it in GitHub Desktop.
#!/bin/bash
PICTURES="/home/mike/Bilder/Wallpaper"
case "$1" in
single)
PICTURES="/home/mike/Bilder/Wallpaper"
;;
dual)
PICTURES="/home/mike/Bilder/Wallpaper/Dual"
;;
*)
;;
esac
find "$PICTURES" -type f | shuf -n 1 | xargs nitrogen --set-zoom-fill &> /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment