/[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

Diff of /trunk/dwm-status.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 56 by dpavlin, Tue Oct 2 16:32:17 2007 UTC revision 115 by dpavlin, Fri Jun 19 14:40:14 2009 UTC
# Line 8  use strict; Line 8  use strict;
8  use POSIX qw/strftime/;  use POSIX qw/strftime/;
9  use File::Slurp;  use File::Slurp;
10  use Time::HiRes;  use Time::HiRes;
11  eval "use Data::Dump qw/dump/;";  use Data::Dump qw/dump/;
12    
13  my $dt = 3;  my $dt = 3;
14  my $acpi_every = 10;  my $acpi_every = 10;
# Line 16  my $acpi_every = 10; Line 16  my $acpi_every = 10;
16  my $disk_blk_size = 512;  my $disk_blk_size = 512;
17    
18  my $debug = shift @ARGV;  my $debug = shift @ARGV;
19    my $awesome = 3;
20    
21  $|=1;  $|=1;
22    
# Line 27  sub proc2hash { Line 28  sub proc2hash {
28          while(<$fh>) {          while(<$fh>) {
29                  chomp;                  chomp;
30                  my ( $key, $value ) = split(/:\s+/, $_, 2);                  my ( $key, $value ) = split(/:\s+/, $_, 2);
31                  $value =~ s/ m[VW]h*$//;                  $value =~ s/ m[AVW]h*$//;
32                  $h->{$key} = $value;                  $h->{$key} = $value;
33          }          }
34          warn "$f ",dump( $h ) if ( $debug );          warn "$f ",dump( $h ) if ( $debug );
# Line 90  sub unit { Line 91  sub unit {
91    
92  my ( $lrx, $ltx ) = ( 0, 0 );  my ( $lrx, $ltx ) = ( 0, 0 );
93  my ( $ld_r, $ld_w ) = ( 0, 0 );  my ( $ld_r, $ld_w ) = ( 0, 0 );
94  my $bat;  my $bat = '';
95    
96  my $i = 0;  my $i = 0;
97    my $sys_fs = '/sys/class/power_supply/BAT0';
98    
99  while ( 1 ) {  while ( 1 ) {
100          my $s = strftime("%Y-%m-%d %H:%M:%S", localtime());          my $s = strftime("%Y-%m-%d %H:%M:%S", localtime());
101    
102          if ( $i % $acpi_every == 0 && $proc_acpi_battery ) {          if ( $i % $acpi_every == 0 ) {
103                    my $sysfs_path = glob "$sys_fs/*_full";
104                    if ( $sysfs_path ) {
105    
106                  my $state = proc2hash( "$proc_acpi_battery/state" );                          my $full = read_file( $sysfs_path );
107                            $sysfs_path =~ s/_full/_now/;
108                            my $now = read_file( $sysfs_path );
109                            $bat = sprintf("%2d%% | ", $now * 100 / $full );
110    
111                  if ( $state->{'present rate'} != 0 ) {                  } elsif ( $proc_acpi_battery ) {
                         my $info = proc2hash( "$proc_acpi_battery/info" );  
112    
113                          my $pcnt = $state->{'remaining capacity'} / $info->{'design capacity'};                          my $state = proc2hash( "$proc_acpi_battery/state" );
114    
115                          my $time = $state->{'remaining capacity'} / ( $state->{'present rate'} );                          if ( $state->{'present rate'} =~ m/^\d+$/ && $state->{'present rate'} != 0 ) {
116                          $time = ( $info->{'design capacity'} - $state->{'remaining capacity'} ) / $state->{'present rate'} if ( $state->{'charging state'} eq 'charging' );                                  my $info = proc2hash( "$proc_acpi_battery/info" );
117    
118                          warn "time = $time\n" if ($debug);                                  my $pcnt = $state->{'remaining capacity'} / $info->{'design capacity'};
119    
120                          my $hh = int( $time );                                  my $time = $state->{'remaining capacity'} / ( $state->{'present rate'} );
121                          my $mm = int( ( $time - $hh ) * 60 );                                  $time = ( $info->{'design capacity'} - $state->{'remaining capacity'} ) / $state->{'present rate'} if ( $state->{'charging state'} eq 'charging' );
                         my $ss = ( $time * 3600 ) % 60;  
122    
123                          $bat = sprintf("%s %2d%% %02d:%02d:%02d %3.1fW!| ",                                  warn "time = $time\n" if ($debug);
                                 substr($state->{'charging state'},0,1),  
                                 $pcnt * 100, $hh, $mm, $ss,  
                                 $state->{'present rate'} / 1000  
                         );  
124    
125                          } else {                                  my $hh = int( $time );
126                                  $bat = '';                                  my $mm = int( ( $time - $hh ) * 60 );
127                                    my $ss = ( $time * 3600 ) % 60;
128    
129                                    $bat = sprintf("%s %2d%% %02d:%02d:%02d %3.1fW!| ",
130                                            substr($state->{'charging state'},0,1),
131                                            $pcnt * 100, $hh, $mm, $ss,
132                                            $state->{'present rate'} / 1000
133                                    );
134                          }                          }
135                    }
136          } else {          } else {
137                  $bat =~ s/!(\|\s)$/ $1/;                  $bat =~ s/!(\|\s)$/ $1/;
138          }          }
# Line 145  while ( 1 ) { Line 154  while ( 1 ) {
154    
155          foreach ( split(/\n/, $net) ) {          foreach ( split(/\n/, $net) ) {
156                  s/^\s+//;                  s/^\s+//;
157                  s/:\s+/:/;                  s/:\s*/ /;
158                  my @n = split(/\s+/, $_, 17);                  my @n = split(/\s+/, $_, 17);
159                  next unless ( $n[0] =~ s!(eth\d|ath\d):!! );                  #next unless ( $n[0] =~ s!(eth\d|ath\d):!! );
160                    next unless $n[1] =~ m{^\d+$};
161    
162                  warn dump( @n ) if ($debug);                  warn dump( @n ) if ($debug);
163                  $rx += $n[0];                  $rx += $n[1];
164                  $tx += $n[8];                  $tx += $n[9];
165          }          }
166          warn "rx: $rx tx: $tx\n" if ($debug);          warn "rx: $rx tx: $tx\n" if ($debug);
167    
# Line 177  while ( 1 ) { Line 187  while ( 1 ) {
187          my $d_write = ( $d_w - $ld_w ) / $dt;          my $d_write = ( $d_w - $ld_w ) / $dt;
188          ( $ld_r, $ld_w ) = ( $d_r, $d_w );          ( $ld_r, $ld_w ) = ( $d_r, $d_w );
189    
190          printf("%s | %s |%5s D %-5s|%5s > %-5s| %s%s\n",          my $out = sprintf("%s | %s |%5s D %-5s|%5s > %-5s| %s%s",
191                  $s,                  $s,
192                  $load,                  $load,
193                  unit( $d_read ), unit( $d_write ),                  unit( $d_read ), unit( $d_write ),
# Line 185  while ( 1 ) { Line 195  while ( 1 ) {
195                  $bat, $temp,                  $bat, $temp,
196          );          );
197    
198            print "$out\n";
199            if ( $awesome ) {
200                    open(my $fh, '|-', 'awesome-client') || die "can't pipe to awesome-client: $!";
201                    print $fh
202                            $awesome == 3   ? qq{mytextbox.text="$out"\n}
203                                            : "0 widget_tell mystatusbar dwm-status text $out\n"
204                                            ;
205                    close($fh);
206            }
207    
208          sleep $dt;          sleep $dt;
209  }  }
210    

Legend:
Removed from v.56  
changed lines
  Added in v.115

  ViewVC Help
Powered by ViewVC 1.1.26