wallpaper: save the wallpaper as a PNG image

This commit is contained in:
Vincent Bernat 2015-02-05 12:53:09 +01:00
parent 9b0995552b
commit 648c75cc9f

View file

@ -84,5 +84,5 @@ for index in range(len(screens)):
assert background, "Don't know the size of the display area" assert background, "Don't know the size of the display area"
with tempfile.NamedTemporaryFile(delete=False, with tempfile.NamedTemporaryFile(delete=False,
dir=os.path.dirname(os.path.realpath(options.target))) as tmp: dir=os.path.dirname(os.path.realpath(options.target))) as tmp:
background.save(tmp, "jpeg") background.save(tmp, "png")
os.rename(tmp.name, options.target) os.rename(tmp.name, options.target)