You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
429 B
25 lines
429 B
5 years ago
|
#!/usr/bin/env sh
|
||
|
MAX=10
|
||
|
MIN=2
|
||
|
|
||
|
setdelta() {
|
||
|
sxmo_setpinebacklight $(
|
||
|
cat /sys/class/backlight/backlight/brightness |
|
||
|
xargs -IB echo B $1 |
|
||
|
bc |
|
||
|
xargs -INUM echo -e "$MIN\nNUM" | sort -n | tail -n1 |
|
||
|
xargs -INUM echo -e "$MAX\nNUM" | sort -n | head -n1
|
||
|
)
|
||
|
sxmo_notify.sh 200 "Backlight $(cat /sys/class/backlight/backlight/brightness)/10"
|
||
|
}
|
||
|
|
||
|
up() {
|
||
|
setdelta "+1"
|
||
|
|
||
|
}
|
||
|
|
||
|
down() {
|
||
|
setdelta "-1"
|
||
|
}
|
||
|
|
||
|
$1 $2
|