Advertisement
sxiii

Asus Zenbook Brightness Change Script (Increase Brightness)

Jan 10th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.13 KB | None | 0 0
  1. #!/bin/bash
  2. current=$(xbacklight | awk -F"." '{ print $1 }')
  3. echo $current
  4. if [ "$current" -lt "100" ]; then
  5. xbacklight -inc 10
  6. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement