https://github.com/arkamar/fader
backlight control in linux
https://github.com/arkamar/fader
backlight backlight-brightness brightness brightness-control fader
Last synced: 4 months ago
JSON representation
backlight control in linux
- Host: GitHub
- URL: https://github.com/arkamar/fader
- Owner: arkamar
- Created: 2020-02-17T22:23:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T17:58:44.000Z (over 5 years ago)
- Last Synced: 2025-03-17T15:08:54.437Z (7 months ago)
- Topics: backlight, backlight-brightness, brightness, brightness-control, fader
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fader
Fader is combination of `faderd` daemon with `fader` command line utility for backlight control in linux.
It still needs some touch and polishing but I already use it daily.
I will be glad if it works for you as well.## Invocation
`faderd [-d PATH]`
* `-d PATH` sets the path to the backlight control directory. It is set to `/sys/class/backlight/intel_backlight` by default (my default).
This server runs forever, waits for commands in `/tmp/fader.sock` and changes brightness appropriately.
`fader [+|-]NUMBER[%]`
This is user utility for sending commands to the `faderd` through `/tmp/fader.sock`.
It accepts exactly one parameter with decimal `NUMBER` which may be prefixed with `+` or `-` and suffixed with `%`.
The usage should be intuitive, but here is few examples for clarification:* `fader 10` - set the brightness to 10
* `fader 10%` - set the brightness to 10%
* `fader +10` - increase brightness by 10
* `fader -10%` - decrease brightness by 10%## Compilation
Run `make` in source directory in order to compile `fader` and `faderd` programs.