+bright
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
parent
892dc73426
commit
7e11b69c3f
1 changed files with 17 additions and 0 deletions
17
brightness
Executable file
17
brightness
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Pau Oliva Fora - pof (a) eslack (.) org
|
||||
#
|
||||
# Macbook Air 4,2 power management script
|
||||
# copy to /etc/pm/power.d/99_macbookair and chmod 755
|
||||
#
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo "$0 brightness (0-15)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
level=$1
|
||||
|
||||
# lower brightness (value from 1 to 15)
|
||||
echo $level > /sys/devices/pci0000:00/0000:00:02.0/backlight/acpi_video0/brightness
|
Loading…
Reference in a new issue