Skip to content

Instantly share code, notes, and snippets.

@Igneous
Created November 23, 2010 21:12
Show Gist options
  • Save Igneous/712542 to your computer and use it in GitHub Desktop.
Save Igneous/712542 to your computer and use it in GitHub Desktop.
#!/bin/bash
typeset -i x;x=0;
for i in ~/walls/*.{jpg,png,JPG,PNG};do
wall[$x]="$i"
let "x=$x+1"
done
unique=$RANDOM
let "unique %= ${#wall[@]}"
feh --bg-scale "${wall[$unique]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment