mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-06-20 09:37:42 +02:00
Fix space in wallpaper.py
This commit is contained in:
parent
80fd0ff646
commit
22c112569a
@ -175,7 +175,7 @@ def set_win_wallpaper(img):
|
|||||||
if "x86" in os.environ["PROGRAMFILES"]:
|
if "x86" in os.environ["PROGRAMFILES"]:
|
||||||
ctypes.windll.user32.SystemParametersInfoW(20, 0, img, 3)
|
ctypes.windll.user32.SystemParametersInfoW(20, 0, img, 3)
|
||||||
else:
|
else:
|
||||||
# 'W' funcitons take uniqcode strings,
|
# 'W' funcitons take uniqcode strings,
|
||||||
# while 'A' functions take UTF-8 bytestrings.
|
# while 'A' functions take UTF-8 bytestrings.
|
||||||
# (Python 3 strings are Unicode by default.)
|
# (Python 3 strings are Unicode by default.)
|
||||||
ctypes.windll.user32.SystemParametersInfoA(20, 0, str.encode(img), 3)
|
ctypes.windll.user32.SystemParametersInfoA(20, 0, str.encode(img), 3)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user