1
0
dotfiles/new/i3/battery
Tom Crossley FEARNLEY 256a1e22f3 new
2020-03-20 01:42:31 +00:00

11 lines
249 B
Plaintext
Executable File

$full_text = "";
if ($status eq 'Discharging') {
$full_text .= "⚡ $percent% Bat";
} elsif ($status eq 'Charging') {
$full_text .= " $percent% Chr";
}
elsif ($status eq 'Unknown' || $status eq 'Full') {
$full_text .= "⚡ $percent%";
}