git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/localfs/usr/local/sbin/brightness-up
diff options
context:
space:
mode:
authorHarald Pfeiffer <harald.pfeiffer _ xmart.de> 2018-11-01 13:30:58 +0100
committerHarald Pfeiffer <harald.pfeiffer _ xmart.de> 2018-11-01 13:30:58 +0100
commit0632591996893fe136a1f2fe44d9b9f404f41f3e (patch)
tree7340edbe7c212da3db45a83219147143a3268c8d /localfs/usr/local/sbin/brightness-up
downloadfedora-laptop-0632591996893fe136a1f2fe44d9b9f404f41f3e.tar.bz2
Initial commit
Diffstat (limited to 'localfs/usr/local/sbin/brightness-up')
-rwxr-xr-xlocalfs/usr/local/sbin/brightness-up10
1 files changed, 10 insertions, 0 deletions
diff --git a/localfs/usr/local/sbin/brightness-up b/localfs/usr/local/sbin/brightness-up
new file mode 100755
index 0000000..b720682
--- /dev/null
+++ b/localfs/usr/local/sbin/brightness-up
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+MAXBN=$(cat /sys/class/backlight/intel_backlight/max_brightness)
+CURBN=$(cat /sys/class/backlight/intel_backlight/brightness)
+
+if [ "$CURBN" -lt "$MAXBN" ]; then
+ CURBN=$(( $CURBN+78 ))
+ echo "$CURBN" > /sys/class/backlight/intel_backlight/brightness
+ notify-send Brightness "${CURBN}/${MAXBN}" -t 200
+fi