backlightcontrol
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| backlightcontrol [2011/09/16 16:11] – created sven | backlightcontrol [2011/11/05 13:33] (current) – fixed toggle script excogitation | ||
|---|---|---|---|
| Line 10: | Line 10: | ||
| current=$(cat $backlight) | current=$(cat $backlight) | ||
| new=$((current +25)) | new=$((current +25)) | ||
| - | if ((new > 255 )); then | + | if [ $new -gt 255 ]; then |
| | | ||
| fi | fi | ||
| + | |||
| echo $new > $backlight | echo $new > $backlight | ||
| </ | </ | ||
| Line 25: | Line 26: | ||
| current=$(cat $backlight) | current=$(cat $backlight) | ||
| new=$((current - 25)) | new=$((current - 25)) | ||
| - | if ((new < 0 )); then | + | if [ $new -lt 0 ]; then |
| new=0 | new=0 | ||
| fi | fi | ||
| echo $new > $backlight | echo $new > $backlight | ||
| </ | </ | ||
| + | use new=3 if you don't want your screen to go black on the lowest setting | ||
| / | / | ||
| Line 41: | Line 43: | ||
| current=$(cat $backlight) | current=$(cat $backlight) | ||
| - | if ((current | + | if [ $current |
| cat $old_file > $backlight | cat $old_file > $backlight | ||
| else | else | ||
| Line 53: | Line 55: | ||
| < | < | ||
| KERNEL==" | KERNEL==" | ||
| - | KERNEL==" | + | KERNEL==" |
| </ | </ | ||
backlightcontrol.1316182312.txt.gz · Last modified: by sven
