https://github.com/vampy/linuxmonitorcontrol
Control your external monitor brightness on your Linux
https://github.com/vampy/linuxmonitorcontrol
brightness brightness-control ddcutil external-monitor monitor
Last synced: 3 months ago
JSON representation
Control your external monitor brightness on your Linux
- Host: GitHub
- URL: https://github.com/vampy/linuxmonitorcontrol
- Owner: vampy
- License: mit
- Created: 2021-02-20T07:33:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-22T13:20:39.000Z (over 4 years ago)
- Last Synced: 2025-01-12T01:13:48.585Z (5 months ago)
- Topics: brightness, brightness-control, ddcutil, external-monitor, monitor
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LinuxMonitorControl
Linux monitor control using [DDC](https://en.wikipedia.org/wiki/Display_Data_Channel) (your monitor must support it)
Only brightness and contrast are supported.
Requires: [ddcutil](https://www.ddcutil.com/)
## Build & Run
```bash
make build# Set brightness on all monitors
./LinuxMonitorControl -b 50# Set brightness only on monitor 1
./LinuxMonitorControl -b 50 -d 1# Set contrast only on monitor 1
./LinuxMonitorControl -c 50 -d 1
```## Build local ddcutil
See required dependencies [here](https://www.ddcutil.com/building/)
```bash
make dependencies# If build succeeds
./ddcutil/bin/ddcutil detect
```