dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

README.md (609B)


      1 # backlight-control
      2 Control the backlight brightness.
      3 
      4 I had some problems with `xbacklight` in combination with the proprietary nvidia driver, so I wrote a replacement.
      5 
      6 ## Build
      7 ```sh
      8 make
      9 ```
     10 
     11 ## Install
     12 ```sh
     13 sudo make install
     14 ```
     15 
     16 ## Uninstall
     17 ```sh
     18 sudo make uninstall
     19 ```
     20 
     21 ## Usage
     22 ```sh
     23 $ backlight-control
     24 Usage: backlight-control [+|-]<value>
     25 
     26 Examples:
     27         backlight-control +10
     28         backlight-control -10
     29         backlight-control 50
     30 
     31 ```
     32 
     33 `backlight-control +n` increases brightness by n%
     34 
     35 `backlight-control -n` decreases brightness by n%
     36 
     37 `backlight-control n` sets the brightness to n%