/[scripts]/trunk/dwm-status.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/dwm-status.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 74 - (show annotations)
Thu Apr 3 18:39:38 2008 UTC (15 years, 11 months ago) by dpavlin
File MIME type: text/plain
File size: 4367 byte(s)
added name of status bar required for newer awesome

1 #!/usr/bin/perl -w
2
3 # dwm-status.pl
4 #
5 # 05/26/07 23:08:31 CEST Dobrica Pavlinusic <dpavlin@rot13.org>
6
7 use strict;
8 use POSIX qw/strftime/;
9 use File::Slurp;
10 use Time::HiRes;
11 use Data::Dump qw/dump/;
12
13 my $dt = 3;
14 my $acpi_every = 10;
15
16 my $disk_blk_size = 512;
17
18 my $debug = shift @ARGV;
19 my $awesome = 1;
20
21 $|=1;
22
23 sub proc2hash {
24 my $f = shift;
25 return unless -f $f;
26 open(my $fh, '<', $f) || die "can't open $f: $!";
27 my $h;
28 while(<$fh>) {
29 chomp;
30 my ( $key, $value ) = split(/:\s+/, $_, 2);
31 $value =~ s/ m[VW]h*$//;
32 $h->{$key} = $value;
33 }
34 warn "$f ",dump( $h ) if ( $debug );
35 return $h;
36 }
37
38 my $proc_acpi_battery;
39 sub find_proc_acpi {
40 my ( $path, $check ) = @_;
41
42 if ( -e "/proc/acpi/$path" ) {
43 opendir(my $items, "/proc/acpi/$path") || die "can't open /proc/acpi/$path: $!";
44 foreach my $item ( readdir( $items ) ) {
45 $check->( $item ) && last;
46 }
47 }
48 }
49
50 my $proc_acpi_thermal_zone_temperature;
51 find_proc_acpi('thermal_zone', sub {
52 my $thm = shift;
53 return if ( ! -e "/proc/acpi/thermal_zone/$thm/temperature" );
54 warn "# using thermal zone $thm\n" if ( $debug );
55 $proc_acpi_thermal_zone_temperature = "/proc/acpi/thermal_zone/$thm/temperature";
56 });
57
58 find_proc_acpi('battery', sub {
59 my $bat = shift;
60 return unless $bat =~ /\w+/;
61
62 warn "# testing battery $bat\n" if ( $debug );
63
64 if ( proc2hash( "/proc/acpi/battery/$bat/info" )->{present} eq 'yes' ) {
65 $proc_acpi_battery = "/proc/acpi/battery/$bat";
66 warn "using $proc_acpi_battery to monitor battery\n";
67 }
68 });
69
70 sub unit {
71 my $v = shift;
72
73 warn "unit( $v )\n" if ($debug);
74
75 my @units = qw/b k M G/;
76 my $o = 0;
77
78 while ( ( $v / 10000 ) >= 1 ) {
79 $o++;
80 $v /= 1024;
81 }
82
83 if ( $v >= 1 ) {
84 return sprintf("%d%s", $v, $units[$o]);
85 } elsif ( $v == 0 ) {
86 return '';
87 } else {
88 return sprintf("%.1f%s", $v, $units[$o]);
89 }
90 }
91
92 my ( $lrx, $ltx ) = ( 0, 0 );
93 my ( $ld_r, $ld_w ) = ( 0, 0 );
94 my $bat;
95
96 my $i = 0;
97
98
99 while ( 1 ) {
100 my $s = strftime("%Y-%m-%d %H:%M:%S", localtime());
101
102 if ( $i % $acpi_every == 0 && $proc_acpi_battery ) {
103
104 my $state = proc2hash( "$proc_acpi_battery/state" );
105
106 if ( $state->{'present rate'} != 0 ) {
107 my $info = proc2hash( "$proc_acpi_battery/info" );
108
109 my $pcnt = $state->{'remaining capacity'} / $info->{'design capacity'};
110
111 my $time = $state->{'remaining capacity'} / ( $state->{'present rate'} );
112 $time = ( $info->{'design capacity'} - $state->{'remaining capacity'} ) / $state->{'present rate'} if ( $state->{'charging state'} eq 'charging' );
113
114 warn "time = $time\n" if ($debug);
115
116 my $hh = int( $time );
117 my $mm = int( ( $time - $hh ) * 60 );
118 my $ss = ( $time * 3600 ) % 60;
119
120 $bat = sprintf("%s %2d%% %02d:%02d:%02d %3.1fW!| ",
121 substr($state->{'charging state'},0,1),
122 $pcnt * 100, $hh, $mm, $ss,
123 $state->{'present rate'} / 1000
124 );
125
126 } else {
127 $bat = '';
128 }
129 } else {
130 $bat =~ s/!(\|\s)$/ $1/;
131 }
132 $i++;
133
134 my $load = read_file('/proc/loadavg');
135 chomp( $load );
136 $load =~ s!\s\d+/\d+.*!!;
137
138 my $temp = '';
139 if ( $proc_acpi_thermal_zone_temperature ) {
140 $temp = read_file( $proc_acpi_thermal_zone_temperature );
141 chomp( $temp );
142 $temp =~ s!^.*:\s+!!;
143 }
144
145 my $net = read_file('/proc/net/dev');
146 my ( $rx, $tx ) = ( 0,0 );
147
148 foreach ( split(/\n/, $net) ) {
149 s/^\s+//;
150 s/:\s+/:/;
151 my @n = split(/\s+/, $_, 17);
152 next unless ( $n[0] =~ s!(eth\d|ath\d):!! );
153
154 warn dump( @n ) if ($debug);
155 $rx += $n[0];
156 $tx += $n[8];
157 }
158 warn "rx: $rx tx: $tx\n" if ($debug);
159
160 my $net_rx = ( $rx - $lrx ) / $dt;
161 my $net_tx = ( $tx - $ltx ) / $dt;
162 ( $lrx, $ltx ) = ( $rx, $tx );
163
164 my $disk = read_file('/proc/diskstats');
165 my ( $d_r, $d_w ) = ( 0,0 );
166
167 foreach ( split(/\n/, $disk) ) {
168 s/^\s+//;
169 my @d = split(/\s+/, $_, 17);
170 next unless ( $d[2] =~ m/^[sh]d\w$/ );
171
172 warn dump( @d ) if ($debug);
173 $d_r += $d[5] * $disk_blk_size;
174 $d_w += $d[7] * $disk_blk_size;
175 }
176 warn "d_r: $d_r d_w: $d_w\n" if ($debug);
177
178 my $d_read = ( $d_r - $ld_r ) / $dt;
179 my $d_write = ( $d_w - $ld_w ) / $dt;
180 ( $ld_r, $ld_w ) = ( $d_r, $d_w );
181
182 my $out = sprintf("%s | %s |%5s D %-5s|%5s > %-5s| %s%s\n",
183 $s,
184 $load,
185 unit( $d_read ), unit( $d_write ),
186 unit( $net_rx ), unit( $net_tx ),
187 $bat, $temp,
188 );
189
190 print $out;
191 if ( $awesome ) {
192 open(my $fh, '|-', 'awesome-client') || die "can't pipe to awesome-client: $!";
193 print $fh "0 widget_tell mystatusbar dwm-status text $out\n";
194 close($fh);
195 }
196
197 sleep $dt;
198 }
199

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26