# # $Id: README.KDE,v 1.1 2000/04/03 06:53:09 reinelt Exp $ # This is the README file for the KDE integration of lcd4linux First: lcd4linux is NO KDE program! But: lcd4linux with the X11-driver can be integrated in KDE, so that it drives a little window in the KDE panel. This so called 'swallowing on panel' can be accomplished by using a .kdelnk file and a special configuration. Both files come with this package, but should be adopted to your needs. The KDE panel windows must have a size of 45x45 pixels. We get this size by using a size of 6x5 characters, each character has 6x8 pixels. By using a horizontal gap of 1 pixel between characters, we get a size of horizontal: 6 chars * 6 pixels + 5 gaps = 41 pixels vertical: 5 chars * 8 pixels = 40 pixels With a border size of 2 pixels this gives a size of 45 x 44 pixels. Great! I prefer using 5 vertical bars (load avg, CPU busy, CPU system, disk read+write, network receive+transmit, ISDN in+out), but you use any other combination you like. INSTALLATION: * download and compile lcd4linux * edit lcd4linux.kdelnk and copy to $KDEDIR/share/applnk/apps/System * copy lcd4linux.xpm to $KDEDIR/share/icons * copy lcd4kde.conf to /etc * create a /etc/lcd4X11.conf (this will be used if you start lcd4linux from the menu or by clicking on the panel window * use "Panel/Add Application" from the K menu to create a panel entry * restart KPanel Enjoy! /exec.c?h=master&id=05ff9fc0c4691e4f60e9daa642eda28b34c02394'>commitdiffstats
path: root/exec.c
blob: 903d5e4be2adf86ddf874d02ce8a5e28216c0266 (plain)
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