-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx-apple-log-battery-status
executable file
·63 lines (47 loc) · 1.06 KB
/
x-apple-log-battery-status
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env perl
use strict;
use warnings;
open(my $ioreg, '-|', 'ioreg -l');
my $found = 0;
my %info;
while (<$ioreg>) {
chomp;
if (!$found) {
$found++ if /AppleSmartBattery <class AppleSmartBattery/;
next;
}
if (/"([^"]+)"\s*=\s*{(.+)}/) {
my $name = $1;
my $attr = $2;
my %data = $attr =~ /"([^"]+)"\s*=\s*"?([^",]+)"?/g;
$info{$name} = \%data;
next;
}
if (/"([^"]+)"\s*=\s*"?([^"+]+)"?/) {
$info{$1} = $2;
next;
}
last if /^(\s*[|])+\s*}$/;
}
my $logfile = "$ENV{HOME}/.battery.log";
open(my $log, '>>', $logfile)
|| die("Could not open log file '$logfile': $!\n");
my $now = time;
print $log "t:$now # ".localtime($now)."\n";
my @keys = qw(
FullyCharged IsCharging ExternalConnected
CycleCount
TimeRemaining
MaxCapacity Voltage CurrentCapacity DesignCapacity
Temperature
);
foreach my $key (@keys) {
my $new_key = $key;
$new_key =~ s/([a-z])([A-Z])/${1}_${2}/g;
$new_key = lc($new_key);
my $value = $info{$key};
next unless defined $value;
print $log "$new_key: $value\n";
}
print $log "\n";
close($log);