Toggle the "night light" feature on win 10 using python

Viewed 699

I am making sort of a quick access program in python.
so I need to make the night light feature on and off using python.
Did not find anything regarding this anywhere.
Thanks in advance :)

1 Answers

You can install this Powershell function which allows you to control the Night Light by a Powershell command. Using os.system() you should then be able to call the function from within a Python script.

Related