summaryrefslogtreecommitdiff
path: root/ar/.local/bin/statusbar/sb-bghitness
blob: 0aabfb62e974f04f566f580c0f138d5ee63b60be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# current brightness
curr_brightness=$(cat /sys/class/backlight/*/brightness)

# max_brightness
max_brightness=$(cat /sys/class/backlight/*/max_brightness)

# brightness percentage
brightness_per=$((100 * curr_brightness / max_brightness))

case $BLOCK_BUTTON in
3) notify-send "💡 Brightness module" "\- Shows current brightness level ☀️." ;;
4) pkexec brillo -A 5 -q ;;
5) pkexec brillo -U 5 -q ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac

echo "💡${brightness_per}%"