Skip to content

Instantly share code, notes, and snippets.

@kishorviswanathan
Created July 27, 2019 13:43
Show Gist options
  • Save kishorviswanathan/7e424ae992a98e5fec4074069c69f957 to your computer and use it in GitHub Desktop.
Save kishorviswanathan/7e424ae992a98e5fec4074069c69f957 to your computer and use it in GitHub Desktop.
#!/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