Created
June 7, 2014 11:20
-
-
Save Exodus111/814c659422232f50994e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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