Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 199 Bytes

change-windows-wallpaper-using-python-3.md

File metadata and controls

8 lines (6 loc) · 199 Bytes

How to change windows wallpaper using Python3

Following code can be used for changing windows wallpaper

import ctypes
ctypes.windll.user32.SystemParametersInfoW(20, 0, image , 0)