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