Created
July 27, 2019 13:43
-
-
Save kishorviswanathan/7e424ae992a98e5fec4074069c69f957 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 | |
# A script to fetch the Image of the day from Bing and set it as wallpaper on Ubuntu Gnome. | |
wallpaper='/tmp/wallpaper.jpg' | |
width=1366 | |
wget "https://bing.biturl.top/?resolution=$width&format=image&index=0&mkt=en-US" -O $wallpaper | |
gsettings set org.gnome.desktop.background picture-uri $wallpaper |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment