Answers for "change background pc python"

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

Browse Popular Code Answers by Language