dotfiles/dot_config/fish/functions/batt.fish
punkfairie 9f5c7c826f
Update .chezmoi.toml
Update .chezmoiignore
Add .chezmoiremove
Remove .bash_logout
Remove .bash_profile
Update .config/fish/functions/batt.fish
Update .config/fish/functions/extract.fish
Update .local/bin/get-gpg-key
Update .xprofile
Change attributes of .config/xrandr/desktop.sh
Change attributes of .gnupg/gpg-agent.conf
2024-10-04 21:36:27 -07:00

8 lines
228 B
Fish

#!/usr/bin/env fish
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
end