Skip to content

Python Skript that sets the daily www.bing.com picture as a Desktop Wallpaper

License

Notifications You must be signed in to change notification settings

toknow-gh/bing-wallpaper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Bing-Wallpaper

A Python3 Script to set the daily background image of www.bing.com as Desktop Wallpaper of Linux or Windows.

Works fine with Ubuntu 13.10 (Unity and Gnome3). KDE is not supported yet. By testing it in Win7 I experienced a reset of the wallpaper after rebooting.

HowTo Use:

Just take a look at the 2-3 variables at the beginning of the script and change them to your needs. The Script will download the daily pictures, so a extra directory for it is recommended.

Note:

This isn't really finished, (especially regarding compatibility) but maybe this already is useful for someone. If you have any questions or ideas how to improve this, tell me! ;-)

Additional tip:

Automate it! (Linux)

Make something like the following starting at boot time, to automate the process (change the paths to your needs):

#! /bin/bash
DATE=`date +%d-%m-%Y`
#only start the script if the todays picture doesn't exists
if [ ! -a /pathTo/saveDir/bing_wp_$DATE".jpg" ]; then
	python3 /pathTo/pythonScript/bing-wallpaper.py
fi

About

Python Skript that sets the daily www.bing.com picture as a Desktop Wallpaper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%