mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 02:46:06 -07:00
11 lines
246 B
Plaintext
Executable File
11 lines
246 B
Plaintext
Executable File
|
|
status=$(cat /sys/class/power_supply/hidpp_battery_*/uevent | grep POWER_SUPPLY_VOLTAGE)
|
|
voltage=$(echo $status | cut -c26-29)
|
|
if [ "$voltage" -ge 3200 ]; then
|
|
color="#b8bb26"
|
|
else
|
|
color="#fb4934"
|
|
fi
|
|
|
|
echo "<fc=$color>${voltage}mV</fc>"
|