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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
Display dpf {
Driver 'DPF'
Port 'usb0'
Font '6x8'
Foreground 'ffffff'
Background '000000'
Basecolor '000000'
Orientation 3 # Orientation value from 0-3
Backlight backlight # Backlight variable control
}
Widget OS {
class 'Text'
expression '*** '.uname('sysname').' '.uname('release').' - dpf driver by hackfin ***'
width 21
align 'M'
speed 200
update tick
Background '008000'
Foreground 'ffffff'
}
Widget CPU {
class 'Text'
expression uname('machine')
prefix 'CPU '
width 10
align 'L'
update tick
Background 'FFFFFF00'
}
Widget RAM {
class 'Text'
expression meminfo('MemTotal')/1024
postfix ' MB RAM'
width 11
precision 0
align 'R'
update tick
Background 'FFFFFF00'
}
Widget Busy {
class 'Text'
expression proc_stat::cpu('busy', 500)
prefix 'Busy'
postfix '%'
width 10
precision 1
align 'R'
update tick
Foreground 'ffffff'
Background 'FFFFFF00'
}
Widget BusyBar {
class 'Bar'
expression proc_stat::cpu('busy', 500)
expression2 proc_stat::cpu('system', 500)
length 21
direction 'E'
update tack
Foreground 'ffffff'
Background '00000080'
BarColor0 '5f5fff'
BarColor1 'ff5f5f'
}
Widget Load {
class 'Text'
expression loadavg(1)
prefix 'Load'
postfix loadavg(1)>1.0?'!':' '
width 10
precision 1
align 'R'
update tick
Foreground 'ffffff'
Background 'FFFFFF00'
}
Widget LoadBar {
class 'Bar'
expression loadavg(1)
max 2.0
length 21
direction 'E'
update tack
Foreground 'ffffff'
Background '00000080'
BarColor0 '5f5fff'
BarColor1 'ff5f5f'
}
Widget Disk {
class 'Text'
# disk.[rw]blk return blocks, we assume a blocksize of 512
# to get the number in kB/s we would do blk*512/1024, which is blk/2
# expression (proc_stat::disk('.*', 'rblk', 500)+proc_stat::disk('.*', 'wblk', 500))/2
# with kernel 2.6, disk_io disappeared from /proc/stat but moved to /proc/diskstat
# therefore you have to use another function called 'diskstats':
expression diskstats('hd.', 'read_sectors', 500) + diskstats('hd.', 'write_sectors', 500)
prefix 'disk'
postfix ' '
width 10
precision 0
align 'R'
update tick
Foreground 'ffffff'
Background 'FFFFFF00'
}
Widget DiskBar {
class 'Bar'
#expression proc_stat::disk('.*', 'rblk', 500)
#expression2 proc_stat::disk('.*', 'wblk', 500)
# for kernel 2.6:
expression diskstats('sd.', 'read_sectors', 500)
expression2 diskstats('sd.', 'write_sectors', 500)
length 21
direction 'E'
update tack
Foreground 'ffffff'
Background '00000080'
BarColor0 '5f5fff'
BarColor1 'ff5f5f'
}
Widget Eth0 {
class 'Text'
expression (netdev('wlan0', 'Rx_bytes', 500)+netdev('wlan0', 'Tx_bytes', 500))/1024
prefix 'wlan0'
postfix ' '
width 10
precision 0
align 'R'
update tick
Foreground 'ffffff'
Background 'FFFFFF00'
}
Widget Eth0Bar {
class 'Bar'
expression netdev('wlan0', 'Rx_bytes', 500)
expression2 netdev('wlan0', 'Tx_bytes', 500)
length 21
direction 'E'
update tack
Foreground 'ffffff'
Background '00000080'
BarColor0 '5f5fff'
BarColor1 'ff5f5f'
}
Widget Uptime {
class 'Text'
expression uptime('%d days %H:%M:%S')
width 20
align 'R'
prefix 'Up '
update 1000
Background 'FFFFFF00'
}
Widget Bgnd {
class 'Image'
file 'bgnd.png'
reload 1
update 5000
inverted 0
visible 1
}
Display 'DPF'
Layout mylayout {
Row01.Col01 'OS'
Row02.Col02 'CPU'
Row03.Col10 'RAM'
Row05.Col01 'Busy'
Row06.Col01 'BusyBar'
Row07.Col01 'Load'
Row08.Col01 'LoadBar'
Row09.Col01 'Disk'
Row10.Col01 'DiskBar'
Row11.Col01 'Eth0'
Row12.Col01 'Eth0Bar'
Row16.Col01 'Uptime'
Layer 2 {
X1.Y1 'Bgnd'
}
}
Layout 'mylayout'
Variables {
backlight 2
tick 500
tack 200
minute 60000
}
|