Skip to content

Instantly share code, notes, and snippets.

@henix
Created April 19, 2013 11:25
Show Gist options
  • Save henix/5419768 to your computer and use it in GitHub Desktop.
Save henix/5419768 to your computer and use it in GitHub Desktop.
bri: show, set and store the brightness of your laptop (BTW, check the battery)
#!/bin/bash
BRIFILE=/sys/class/backlight/acpi_video0/brightness
if [ $# -lt 1 ]; then
cat $BRIFILE
else
echo $1 > $BRIFILE
echo $1 > /root/.bri
fi
if acpi -b | grep -q Discharging ; then
echo the battery is discharging!!!
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment