7 lines
199 B
Bash
Executable file
7 lines
199 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
msg=$(upower -i /org/freedesktop/UPower/devices/battery_BAT0 | \
|
|
grep -E "state|time to|percentage" | \
|
|
awk '{$1=$1};1')
|
|
|
|
notify-send -t 3000 "Battery Status" "$msg"
|