summaryrefslogtreecommitdiff
path: root/init.sh
blob: 610569883a0a1d8b5c85e018cc50a0099d4eaaaa (plain)
    1 #!/bin/sh
    2 #
    3 # start/stop luminous setup
    4 #
    5 # This only sets the permissions on the brightness 
    6 
    7 case $1 in
    8   start)
    9     chmod 666 /sys/class/backlight/*/brightness
   10     ;;
   11   stop)
   12     chmod 644 /sys/class/backlight/*/brightness
   13     ;;
   14   *)
   15     printf "usage: $0 [start|stop]\n"
   16     ;;
   17 esac

Generated by cgit