Skip to content

Instantly share code, notes, and snippets.

@Exodus111
Created June 7, 2014 11:20
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 Exodus111/814c659422232f50994e to your computer and use it in GitHub Desktop.
Save Exodus111/814c659422232f50994e to your computer and use it in GitHub Desktop.
#!/bin/bash
while [[ 1 -eq 1 ]]; do
for i in $(echo /usr/share/backgrounds/*.jpg); do
echo $i
gsettings set org.gnome.desktop.background picture-uri file:///${i}
sleep 60;
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment