2024-04-27 19:26:05 -07:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
2024-10-04 21:36:27 -07:00
|
|
|
if command -v upower &>/dev/null
|
|
|
|
function batt -d "Check battery percentage"
|
|
|
|
upower -i /org/freedesktop/UPower/devices/battery_BAT0 \
|
|
|
|
| grep -E "state|time to|percentage"
|
|
|
|
end
|
2024-04-27 19:26:05 -07:00
|
|
|
end
|