Lines Matching +full:brightness +full:- +full:level
36 .Bd -ragged -offset indent
43 .Bd -literal -offset indent
49 driver enables the ACPI-controlled buttons on Fujitsu notebooks.
56 Using this driver, one can control the brightness of the display, the volume
60 .Bl -tag -width indent
79 .Bd -literal -offset indent
90 .Bd -literal -offset indent
93 if [ "$1" = "" -o "$2" = "" ]
111 LEVEL=`sysctl -n hw.acpi.${OEM}.mute`
112 if [ "$LEVEL" = "1" ]
120 LEVEL=`sysctl -n hw.acpi.${OEM}.pointer_enable`
121 if [ "$LEVEL" = "1" ]
129 LEVEL=`sysctl -n hw.acpi.${OEM}.lcd_brightness`
131 ${LEVEL} / ${MAX_LCD_BRIGHTNESS} * 100" |\\
132 ${CALC} | ${CUT} -d . -f 1`
133 MESSAGE="brightness level ${PERCENT}%"
136 LEVEL=`sysctl -n hw.acpi.${OEM}.volume`
138 ${LEVEL} / ${MAX_VOLUME} * 100" | \\
139 ${CALC} | ${CUT} -d . -f 1`
140 MESSAGE="volume level ${PERCENT}%"
146 if [ -p ${DISPLAY_PIPE} ]
163 .An -nosplit