mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 09:53:13 +00:00
6 lines
108 B
Bash
6 lines
108 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
battery=$(sudo tlp-stat -b | grep "Charge total" | tr -d -c "[:digit:],.")
|
||
|
|
||
|
echo "# $battery %"
|