aboutsummaryrefslogtreecommitdiff
path: root/home/.config/i3/status/brightness
blob: 1c887ad9ad28b08f43ce487f4ed799236bbe6b83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

device="/sys/class/$BLOCK_INSTANCE"

brightness=$(cat "$device/brightness")
max_brightness=$(cat "$device/max_brightness")

percent=$(( brightness*100/max_brightness ))

echo "$percent%"