From 648c75cc9f7fa883f03212385fde2f7d6f7e21bc Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 5 Feb 2015 12:53:09 +0100 Subject: [PATCH] wallpaper: save the wallpaper as a PNG image --- bin/build-wallpaper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-wallpaper b/bin/build-wallpaper index a4f65ec..96074f0 100755 --- a/bin/build-wallpaper +++ b/bin/build-wallpaper @@ -84,5 +84,5 @@ for index in range(len(screens)): assert background, "Don't know the size of the display area" with tempfile.NamedTemporaryFile(delete=False, 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)