Skip to content

ekinpy/brightness

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo

The effortless solution for managing screen brightness in Python.
Linux support coming soon.

Installing

pip install brightness

to test:

python -m brightness

set()

def set(value: int) -> None

Sets the screen brightness to the entered value.

get()

def get() -> (int | None)

Returns the screen brightness.

increase()

def increase(value: int) -> None

Increases the screen brightness by the entered value.

decrease()

def decrease(value: int) -> None

Decreases the screen brightness by the entered value.