Answers for "change windows background python"

3

update windows wallpaper python

import ctypes
ctypes.windll.user32.SystemParametersInfoW(20, 0, "absolute path" , 0)
Posted by: Guest on December-30-2020
0

desktop background change with python

import ctypes
SPI_SETDESKWALLPAPER = 20 
ctypes.windll.user32.SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, "image.jpg" , 0)
Posted by: Guest on May-03-2021

Code answers related to "change windows background python"

Python Answers by Framework

Browse Popular Code Answers by Language