blob: b2ff43afd3a7e93400df5844675d3ef71734e759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Increase / decrease brightness, and pops up a notification
# Requires: xbacklight, a notification program such as herbe or notify-send
# Usage: brightness {inc|dec} n
#notify="notify-send"
notify="herbe"
pkill herbe # comment this too if not using herbe
xbacklight -$1 $2 && $notify "Brightness: $(xbacklight | sed 's/\..*$//')%"
|