Site Tools


Hotfix release available: 2024-02-06a "Kaos". upgrade now! [55.1] (what's this?)
New release available: 2024-02-06 "Kaos". upgrade now! [55] (what's this?)
backlightcontrol

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
backlightcontrol [2011/11/05 13:28] – fixed errors in inc/dec bash scripts excogitationbacklightcontrol [2011/11/05 13:33] (current) – fixed toggle script excogitation
Line 27: Line 27:
 new=$((current - 25)) new=$((current - 25))
 if [ $new -lt 0 ]; then if [ $new -lt 0 ]; then
-   new=3+   new=0
 fi fi
 echo $new > $backlight echo $new > $backlight
 </code> </code>
 +use new=3 if you don't want your screen to go black on the lowest setting
  
 /usr/local/bin/backlight_toggle /usr/local/bin/backlight_toggle
Line 42: Line 43:
 current=$(cat $backlight) current=$(cat $backlight)
  
-if ((current == 0)); then+if [ $current -eq ]; then
    cat $old_file > $backlight    cat $old_file > $backlight
 else else
backlightcontrol.txt · Last modified: 2011/11/05 13:33 by excogitation