A simple brightness control frontend for brightnessctl.
This program interfaces with the brightnessctl
terminal tool to allow changing the brightness of the screen by controlling its backlight.
- First install brightnessctl.
- Add
users
who will runsimplebrightness
to thevideo
group. Do this by executingsudo usermod -a -G video USERNAME
from the terminal for each user, replacing USERNAME with your desireduser
. - Then download
simplebrightness
from this repository. - Extract the downloaded files on your computer.
- Make sure that
simplebrightness
is marked as an executable. You can runchmod +x ./simplebrightness
on the terminal, from inside the extracted folder to make it an executable. - Run
simplebrightness
(simple double click on the script or run it from a terminal).
Simple Brightness is written in Python 3, using Tk, and is licensed under the MIT License, the same license as brightnessctl.
I was having trouble getting xbacklight to work in KDE Neon 5.15 and I needed a way to control the laptop's brightness from the terminal. Brightnessctl did the work, but then I wanted a simple frontend to use in WindowMaker (my desktop of preference for saving battery and older machines). After being unable to find any frontends, I decided to create this one.