mirror of
https://github.com/kuhyx/scripts.git
synced 2026-07-04 15:03:09 +02:00
11 lines
271 B
Bash
Executable File
11 lines
271 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"
|
|
}' |