mirror of
https://github.com/kuhyx/scripts.git
synced 2026-07-04 14:43:08 +02:00
13 lines
288 B
Bash
Executable File
13 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
acpi -b | awk -F', ' '
|
|
/Battery/ {
|
|
split($2, percent, "%")
|
|
split($3, time, " ")
|
|
printf " Battery: %d%%", percent[1]
|
|
if (time[1] != "") printf ", %s", time[1]
|
|
if ($1 ~ /Charging/) printf ", Charging"
|
|
printf "\n"
|
|
}'
|
|
|