-
Notifications
You must be signed in to change notification settings - Fork 0
/
lcd4linux.conf
212 lines (191 loc) · 4.15 KB
/
lcd4linux.conf
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
206
207
208
209
210
211
Variables {
color1 '0080ff50'
color2 'ff00dd50'
textcolor 'ff96f5'
}
Display dpf {
Driver 'DPF'
Port 'usb0'
Font '15x20'
Foreground 'ffffff'
Background '000000'
Basecolor '000000'
Orientation 0 # 0 = landscape, 1 = portrait
# 2 = reverse landscape, 3 = reverse portrait
Backlight backlight # Backlight variable control, 0..7 (0=off, 7=max)
}
Widget Uname {
class 'Text'
expression uname('nodename') . (netinfo::ipaddr('wlo1') ? ' ' . netinfo::ipaddr('wlo1') : '') . ' ' . uname('name') . ' ' . uname('release') . ' ' . uname('machine') . ' ' . uname('version')
width 32
align 'M'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget CPU {
class 'Text'
expression proc_stat::cpu('busy', 500)
prefix 'CPU Busy'
postfix '%'
width 15
precision 1
align 'R'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget System {
class 'Text'
expression proc_stat::cpu('system', 500)
prefix 'Sys'
postfix '%'
width 10
precision 1
align 'R'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget User {
class 'Text'
expression proc_stat::cpu('user', 500)
prefix 'User'
postfix '%'
width 10
precision 1
align 'R'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget CPUBar {
class 'Bar'
expression proc_stat::cpu('busy', 500)
expression2 proc_stat::cpu('system', 500)
length 32
max 100
direction 'E'
update tack
Foreground 'ffffff'
Background '00000050'
BarColor0 color1
BarColor1 color2
}
Widget Load {
class 'Text'
expression exec('/usr/bin/bash -c /home/harija/Stuff/Scripts/get_cpu_avg_ghz.sh')
prefix 'Avg Freq'
postfix 'GHz'
width 15
precision 1
align 'R'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget LoadBar {
class 'Bar'
expression exec('/usr/bin/bash -c /home/harija/Stuff/Scripts/get_cpu_avg_ghz.sh')
expression2 exec('/usr/bin/bash -c /home/harija/Stuff/Scripts/get_cpu_max_ghz.sh')
max 4.4
length 32
direction 'E'
update tack
Foreground 'ffffff'
Background '00000050'
BarColor0 color1
BarColor1 color2
}
Widget RAM {
class 'Text'
expression ((meminfo('MemTotal') - meminfo('MemAvailable')) / 1024
prefix 'RAM'
postfix '/32000MB'
width 20
precision 0
align 'R'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget RAMBar {
class 'Bar'
expression ((meminfo('MemTotal') - meminfo('MemAvailable')
max (meminfo('MemTotal')
length 32
direction 'E'
update tack
Foreground 'ffffff'
Background '00000050'
BarColor0 color1
BarColor1 color2
}
Widget WIFI {
class 'Text'
expression (netdev('wlo1', 'Rx_bytes', 500)+netdev('wlo1', 'Tx_bytes', 500)) *8 /1024 /1024
prefix 'Wi-Fi '
postfix ' Mbps'
width 15
precision 0
align 'R'
update tick
Foreground textcolor
Background 'FFFFFF00'
}
Widget WIFIBar {
class 'Bar'
expression netdev('wlo1', 'Rx_bytes', 1 * 1000) * 8 / 1024 / 1024
expression2 netdev('wlo1', 'Tx_bytes', 1 * 1000) * 8 / 1024 / 1024
max 100
length 32
direction 'E'
update tack
Foreground 'ffffff'
Background '00000050'
BarColor0 color1
BarColor1 color2
}
Widget Uptime {
class 'Text'
expression uptime('%H:%M:%S')
width 20
align 'R'
prefix 'Up '
update 1000
Foreground textcolor
Background 'FFFFFF00'
}
Widget Bgnd {
class 'Image'
file '/home/harija/Pictures/dpf2dark.png'
reload 1
update 5000
inverted 0
visible 1
}
Display 'DPF'
Layout layout_320x240 {
Row01.Col01 'Uname'
Row04.Col01 'CPU'
Row03.Col01 'System'
Row03.Col18 'User'
Row05.Col01 'CPUBar'
Row07.Col01 'Load'
Row08.Col01 'LoadBar'
Row10.Col01 'RAM'
Row11.Col01 'RAMBar'
Row13.Col01 'WIFI'
Row14.Col01 'WIFIBar'
Row16.Col01 'Uptime'
Layer 2 {
X1.Y1 'Bgnd'
}
}
Layout 'layout_320x240'
Variables {
backlight 7
tick 500
tack 200
minute 60000
}