1
0
dotfiles/new/i3/battery

11 lines
249 B
Plaintext
Raw Normal View History

2020-03-20 01:42:31 +00:00
$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%";
}