Im looking how to change the windows backround of a specific monitor, I've been able to change the windows backround of ALL monitors using:
import ctypes
path = r'MYFILEPATH\image.jpg'
ctypes.windll.user32.SystemParametersInfoW(20, 0, path, 0)
Hoping it would magically know what monitor i wanted to change hovever it didnt.
Ive looked at this question but all the solutions dont work for me because im trying to change the backround with multiple displays connected.