]> git.sur5r.net Git - i3/i3.github.io/blob - i3status/manpage.html
add i3status 2.6
[i3/i3.github.io] / i3status / manpage.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"\r
2     "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\r
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">\r
4 <head>\r
5 <link rel="icon" type="image/png" href="/favicon.png">\r
6 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />\r
7 <meta name="generator" content="AsciiDoc 8.6.7" />\r
8 <title>i3: i3status(1)</title>\r
9 <link rel="stylesheet" href="/css/style.css" type="text/css" />\r
10 <link rel="stylesheet" href="/css/xhtml11.css" type="text/css" />\r
11 <script type="text/javascript">\r
12 /*<![CDATA[*/\r
13 window.onload = function(){asciidoc.footnotes(); asciidoc.toc(2);}\r
14 /*]]>*/\r
15 </script>\r
16 <script type="text/javascript" src="/js/asciidoc-xhtml11.js"></script>\r
17 </head>\r
18 <body class="article">\r
19 \r
20         <div id="main">\r
21             <a href="/"><h1 id="title">i3 - improved tiling WM</h1></a>\r
22                         <ul id="nav">\r
23                                 <li><a style="border-bottom: 2px solid #fff" href="/docs">Docs</a></li>\r
24                                 <li><a href="/screenshots">Screens</a></li>\r
25                                 <li><a href="/contact">Contact</a></li>\r
26                                 <li><a href="http://bugs.i3wm.org/">Bugs</a></li>\r
27                         </ul>\r
28         <br style="clear: both">\r
29 <div id="content">\r
30 <div id="header">\r
31 <h1>i3status(1)</h1>\r
32 <span id="author">Michael Stapelberg</span><br />\r
33 <span id="email"><tt>&lt;<a href="mailto:michael@i3wm.org">michael@i3wm.org</a>&gt;</tt></span><br />\r
34 <span id="revnumber">version 2.6,</span>\r
35 <span id="revdate">October 2012</span>\r
36 <div id="toc">
37   <div id="toctitle">Table of Contents</div>
38   <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
39 </div>\r
40 </div>\r
41 <div class="sect1">\r
42 <h2 id="_name">1. NAME</h2>\r
43 <div class="sectionbody">\r
44 <div class="paragraph"><p>i3status - Generates a status line for dzen2 or xmobar</p></div>\r
45 </div>\r
46 </div>\r
47 <div class="sect1">\r
48 <h2 id="_synopsis">2. SYNOPSIS</h2>\r
49 <div class="sectionbody">\r
50 <div class="paragraph"><p>i3status [-c configfile] [-h] [-v]</p></div>\r
51 </div>\r
52 </div>\r
53 <div class="sect1">\r
54 <h2 id="_options">3. OPTIONS</h2>\r
55 <div class="sectionbody">\r
56 <div class="dlist"><dl>\r
57 <dt class="hdlist1">\r
58 -c\r
59 </dt>\r
60 <dd>\r
61 <p>\r
62 Specifies an alternate configuration file path. By default, i3status looks for\r
63 configuration files in the following order:\r
64 </p>\r
65 <div class="olist arabic"><ol class="arabic">\r
66 <li>\r
67 <p>\r
68 ~/.i3status.conf\r
69 </p>\r
70 </li>\r
71 <li>\r
72 <p>\r
73 ~/.config/i3status/config (or $XDG_CONFIG_HOME/i3status/config if set)\r
74 </p>\r
75 </li>\r
76 <li>\r
77 <p>\r
78 /etc/i3status.conf\r
79 </p>\r
80 </li>\r
81 <li>\r
82 <p>\r
83 /etc/xdg/i3status/config (or $XDG_CONFIG_DIRS/i3status/config if set)\r
84 </p>\r
85 </li>\r
86 </ol></div>\r
87 </dd>\r
88 </dl></div>\r
89 </div>\r
90 </div>\r
91 <div class="sect1">\r
92 <h2 id="_description">4. DESCRIPTION</h2>\r
93 <div class="sectionbody">\r
94 <div class="paragraph"><p>i3status is a small program (about 1500 SLOC) for generating a status bar for\r
95 i3bar, dzen2, xmobar or similar programs. It is designed to be very\r
96 efficient by issuing a very small number of system calls, as one generally\r
97 wants to update such a status line every second. This ensures that even under\r
98 high load, your status bar is updated correctly. Also, it saves a bit of energy\r
99 by not hogging your CPU as much as spawning the corresponding amount of shell\r
100 commands would.</p></div>\r
101 </div>\r
102 </div>\r
103 <div class="sect1">\r
104 <h2 id="_configuration">5. CONFIGURATION</h2>\r
105 <div class="sectionbody">\r
106 <div class="paragraph"><p>The basic idea of i3status is that you can specify which "modules" should\r
107 be used (the order directive). You can then configure each module with its\r
108 own section. For every module, you can specify the output format. See below\r
109 for a complete reference.</p></div>\r
110 <div class="listingblock">\r
111 <div class="title">Sample configuration</div>\r
112 <div class="content">\r
113 <pre><tt>general {\r
114         output_format = "dzen2"\r
115         colors = true\r
116         interval = 5\r
117 }\r
118 \r
119 order += "ipv6"\r
120 order += "disk /"\r
121 order += "run_watch DHCP"\r
122 order += "run_watch VPN"\r
123 order += "wireless wlan0"\r
124 order += "ethernet eth0"\r
125 order += "battery 0"\r
126 order += "cpu_temperature 0"\r
127 order += "load"\r
128 order += "time"\r
129 \r
130 wireless wlan0 {\r
131         format_up = "W: (%quality at %essid, %bitrate) %ip"\r
132         format_down = "W: down"\r
133 }\r
134 \r
135 ethernet eth0 {\r
136         # if you use %speed, i3status requires the cap_net_admin capability\r
137         format_up = "E: %ip (%speed)"\r
138         format_down = "E: down"\r
139 }\r
140 \r
141 battery 0 {\r
142         format = "%status %percentage %remaining %emptytime"\r
143         path = "/sys/class/power_supply/BAT%d/uevent"\r
144         low_threshold = 10\r
145 }\r
146 \r
147 run_watch DHCP {\r
148         pidfile = "/var/run/dhclient*.pid"\r
149 }\r
150 \r
151 run_watch VPN {\r
152         pidfile = "/var/run/vpnc/pid"\r
153 }\r
154 \r
155 time {\r
156         format = "%Y-%m-%d %H:%M:%S"\r
157 }\r
158 \r
159 load {\r
160         format = "%5min"\r
161 }\r
162 \r
163 cpu_temperature 0 {\r
164         format = "T: %degrees °C"\r
165         path = "/sys/devices/platform/coretemp.0/temp1_input"\r
166 }\r
167 \r
168 disk "/" {\r
169         format = "%free"\r
170 }</tt></pre>\r
171 </div></div>\r
172 <div class="sect2">\r
173 <h3 id="_general">5.1. General</h3>\r
174 <div class="paragraph"><p>The <tt>colors</tt> directive will disable all colors if you set it to <tt>false</tt>. You can\r
175 also specify the colors that will be used to display "good", "degraded" or "bad"\r
176 values using the <tt>color_good</tt>, <tt>color_degraded</tt> or <tt>color_bad</tt> directives,\r
177 respectively. Those directives are only used if color support is not disabled by\r
178 the <tt>colors</tt> directive. The input format for color values is the canonical RGB\r
179 hexadecimal triplet (with no separators between the colors), prefixed by a hash\r
180 character ("#").</p></div>\r
181 <div class="paragraph"><p><strong>Example configuration</strong>:</p></div>\r
182 <div class="listingblock">\r
183 <div class="content">\r
184 <pre><tt>color_good = "#00FF00"</tt></pre>\r
185 </div></div>\r
186 <div class="paragraph"><p>Likewise, you can use the <tt>color_separator</tt> directive to specify the color that\r
187 will be used to paint the separator bar. The separator is always output in\r
188 color, even when colors are disabled by the <tt>colors</tt> directive.</p></div>\r
189 <div class="paragraph"><p>The <tt>interval</tt> directive specifies the time in seconds for which i3status will\r
190 sleep before printing the next status line.</p></div>\r
191 <div class="paragraph"><p>Using <tt>output_format</tt> you can chose which format strings i3status should\r
192 use in its output. Currently available are:</p></div>\r
193 <div class="dlist"><dl>\r
194 <dt class="hdlist1">\r
195 i3bar\r
196 </dt>\r
197 <dd>\r
198 <p>\r
199 i3bar comes with i3 and provides a workspace bar which does the right thing in\r
200 multi-monitor situations. It also comes with tray support and can display the\r
201 i3status output. This output type uses JSON to pass as much meta-information to\r
202 i3bar as possible (like colors, which blocks can be shortened in which way,\r
203 etc.).\r
204 </p>\r
205 </dd>\r
206 <dt class="hdlist1">\r
207 dzen2\r
208 </dt>\r
209 <dd>\r
210 <p>\r
211 Dzen is a general purpose messaging, notification and menuing program for X11.\r
212 It was designed to be scriptable in any language and integrate well with window\r
213 managers like dwm, wmii and xmonad though it will work with any windowmanger\r
214 </p>\r
215 </dd>\r
216 <dt class="hdlist1">\r
217 xmobar\r
218 </dt>\r
219 <dd>\r
220 <p>\r
221 xmobar is a minimalistic, text based, status bar. It was designed to work\r
222 with the xmonad Window Manager.\r
223 </p>\r
224 </dd>\r
225 <dt class="hdlist1">\r
226 none\r
227 </dt>\r
228 <dd>\r
229 <p>\r
230 Does not use any color codes. Separates values by the pipe symbol. This should\r
231 be used with i3bar and can be used for custom scripts.\r
232 </p>\r
233 </dd>\r
234 </dl></div>\r
235 </div>\r
236 <div class="sect2">\r
237 <h3 id="_ipv6">5.2. IPv6</h3>\r
238 <div class="paragraph"><p>This module gets the IPv6 address used for outgoing connections (that is, the\r
239 best available public IPv6 address on your computer).</p></div>\r
240 <div class="paragraph"><p><strong>Example format_up</strong>: <tt>%ip</tt></p></div>\r
241 <div class="paragraph"><p><strong>Example format_down</strong> <tt>no IPv6</tt></p></div>\r
242 </div>\r
243 <div class="sect2">\r
244 <h3 id="_disk">5.3. Disk</h3>\r
245 <div class="paragraph"><p>Gets used, free, available and total amount of bytes on the given mounted filesystem.</p></div>\r
246 <div class="paragraph"><p>These values can also be expressed in percentages with the percentage_used,\r
247 percentage_free, percentage_avail and percentage_used_of_avail formats.</p></div>\r
248 <div class="paragraph"><p><strong>Example order</strong>: <tt>disk /mnt/usbstick</tt></p></div>\r
249 <div class="paragraph"><p><strong>Example format</strong>: <tt>%free (%avail)/ %total</tt></p></div>\r
250 <div class="paragraph"><p><strong>Example format</strong>: <tt>%percentage_used used, %percentage_free free, %percentage_avail avail</tt></p></div>\r
251 </div>\r
252 <div class="sect2">\r
253 <h3 id="_run_watch">5.4. Run-watch</h3>\r
254 <div class="paragraph"><p>Expands the given path to a pidfile and checks if the process ID found inside\r
255 is valid (that is, if the process is running). You can use this to check if\r
256 a specific application, such as a VPN client or your DHCP client is running.</p></div>\r
257 <div class="paragraph"><p><strong>Example order</strong>: <tt>run_watch DHCP</tt></p></div>\r
258 <div class="paragraph"><p><strong>Example format</strong>: <tt>%title: %status</tt></p></div>\r
259 </div>\r
260 <div class="sect2">\r
261 <h3 id="_wireless">5.5. Wireless</h3>\r
262 <div class="paragraph"><p>Gets the link quality and ESSID of the given wireless network interface. You\r
263 can specify different format strings for the network being connected or not\r
264 connected.</p></div>\r
265 <div class="paragraph"><p><strong>Example order</strong>: <tt>wireless wlan0</tt></p></div>\r
266 <div class="paragraph"><p><strong>Example format</strong>: <tt>W: (%quality at %essid, %bitrate) %ip</tt></p></div>\r
267 </div>\r
268 <div class="sect2">\r
269 <h3 id="_ethernet">5.6. Ethernet</h3>\r
270 <div class="paragraph"><p>Gets the IP address and (if possible) the link speed of the given ethernet\r
271 interface. Getting the link speed requires the cap_net_admin capability. Set\r
272 it using <tt>setcap cap_net_admin=ep $(which i3status)</tt>.</p></div>\r
273 <div class="paragraph"><p><strong>Example order</strong>: <tt>ethernet eth0</tt></p></div>\r
274 <div class="paragraph"><p><strong>Example format</strong>: <tt>E: %ip (%speed)</tt></p></div>\r
275 </div>\r
276 <div class="sect2">\r
277 <h3 id="_battery">5.7. Battery</h3>\r
278 <div class="paragraph"><p>Gets the status (charging, discharging, running), percentage, remaining\r
279 time and power consumption (in Watts) of the given battery and when it&#8217;s\r
280 estimated to be empty. If you want to use the last full capacity instead of the\r
281 design capacity (when using the design capacity, it may happen that your\r
282 battery is at 23% when fully charged because it’s old. In general, I want to\r
283 see it this way, because it tells me how worn off my battery is.), just specify\r
284 <tt>last_full_capacity = true</tt>.</p></div>\r
285 <div class="paragraph"><p>If your battery is represented in a non-standard path in /sys, be sure to\r
286 modify the "path" property accordingly. The first occurence of %d gets replaced\r
287 with the battery number, but you can just hard-code a path as well.</p></div>\r
288 <div class="paragraph"><p>It is possible to define a low_threshold that causes the battery text to be\r
289 colored red. The low_threshold type can be of threshold_type "time" or\r
290 "percentage". So, if you configure low_threshold to 10 and threshold_type to\r
291 "time", and your battery lasts another 9 minutes, it will be colored red.</p></div>\r
292 <div class="paragraph"><p><strong>Example order</strong>: <tt>battery 0</tt></p></div>\r
293 <div class="paragraph"><p><strong>Example format</strong>: <tt>%status %remaining (%emptytime %consumption)</tt></p></div>\r
294 <div class="paragraph"><p><strong>Example low_threshold</strong>: <tt>30</tt></p></div>\r
295 <div class="paragraph"><p><strong>Example threshold_type</strong>: <tt>time</tt></p></div>\r
296 </div>\r
297 <div class="sect2">\r
298 <h3 id="_cpu_temperature">5.8. CPU-Temperature</h3>\r
299 <div class="paragraph"><p>Gets the temperature of the given thermal zone.</p></div>\r
300 <div class="paragraph"><p><strong>Example order</strong>: <tt>cpu_temperature 0</tt></p></div>\r
301 <div class="paragraph"><p><strong>Example format</strong>: <tt>T: %degrees °C</tt></p></div>\r
302 </div>\r
303 <div class="sect2">\r
304 <h3 id="_cpu_usage">5.9. CPU Usage</h3>\r
305 <div class="paragraph"><p>Gets the percentual CPU usage from <tt>/proc/stat</tt> (Linux) or <tt>sysctl(3)</tt> (FreeBSD/OpenBSD).</p></div>\r
306 <div class="paragraph"><p><strong>Example order</strong>: <tt>cpu_usage</tt></p></div>\r
307 <div class="paragraph"><p><strong>Example format</strong>: <tt>%usage</tt></p></div>\r
308 </div>\r
309 <div class="sect2">\r
310 <h3 id="_load">5.10. Load</h3>\r
311 <div class="paragraph"><p>Gets the system load (number of processes waiting for CPU time in the last\r
312 1, 5 and 15 minutes).</p></div>\r
313 <div class="paragraph"><p><strong>Example order</strong>: <tt>load</tt></p></div>\r
314 <div class="paragraph"><p><strong>Example format</strong>: <tt>%1min %5min %15min</tt></p></div>\r
315 </div>\r
316 <div class="sect2">\r
317 <h3 id="_time">5.11. Time</h3>\r
318 <div class="paragraph"><p>Formats the current system time. See <tt>strftime(3)</tt> for the format.</p></div>\r
319 <div class="paragraph"><p><strong>Example order</strong>: <tt>time</tt></p></div>\r
320 <div class="paragraph"><p><strong>Example format</strong>: <tt>%Y-%m-%d %H:%M:%S</tt></p></div>\r
321 </div>\r
322 <div class="sect2">\r
323 <h3 id="_ddate">5.12. DDate</h3>\r
324 <div class="paragraph"><p>Outputs the current discordian date in user-specified format. See <tt>ddate(1)</tt> for\r
325 details on the format string.\r
326 <strong>Note</strong>: Neither <strong>%.</strong> nor <strong>%X</strong> are implemented yet.</p></div>\r
327 <div class="paragraph"><p><strong>Example order</strong>: <tt>ddate</tt></p></div>\r
328 <div class="paragraph"><p><strong>Example format</strong>: <tt>%{%a, %b %d%}, %Y%N - %H</tt></p></div>\r
329 </div>\r
330 <div class="sect2">\r
331 <h3 id="_volume">5.13. Volume</h3>\r
332 <div class="paragraph"><p>Outputs the volume of the specified mixer on the specified device. Works only\r
333 on Linux because it uses ALSA.\r
334 A simplified configuration can be used on FreeBSD and OpenBSD due to\r
335 the lack of ALSA,  the <tt>device</tt>, <tt>mixer</tt> and <tt>mixder_idx</tt> options can be\r
336 ignored on these systems. On these systems the OSS API is used instead to\r
337 query <tt>/dev/mixer</tt> directly.</p></div>\r
338 <div class="paragraph"><p><strong>Example order</strong>: <tt>volume master</tt></p></div>\r
339 <div class="paragraph"><p><strong>Example format</strong>: <tt>♪: %volume</tt></p></div>\r
340 <div class="paragraph"><p><strong>Example configuration</strong>:</p></div>\r
341 <div class="listingblock">\r
342 <div class="content">\r
343 <pre><tt>volume master {\r
344         format = "♪: %volume"\r
345         device = "default"\r
346         mixer = "Master"\r
347         mixer_idx = 0\r
348 }</tt></pre>\r
349 </div></div>\r
350 </div>\r
351 </div>\r
352 </div>\r
353 <div class="sect1">\r
354 <h2 id="_using_i3status_with_dzen2">6. Using i3status with dzen2</h2>\r
355 <div class="sectionbody">\r
356 <div class="paragraph"><p>After installing dzen2, you can directly use it with i3status. Just ensure that\r
357 <tt>output_format</tt> is set to <tt>dzen2</tt>.</p></div>\r
358 <div class="paragraph"><p><strong>Example for usage of i3status with dzen2</strong>:</p></div>\r
359 <div class="listingblock">\r
360 <div class="content">\r
361 <pre><tt>i3status | dzen2 -fg white -ta r -w 1280 \\r
362 -fn "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso8859-1"</tt></pre>\r
363 </div></div>\r
364 </div>\r
365 </div>\r
366 <div class="sect1">\r
367 <h2 id="_using_i3status_with_xmobar">7. Using i3status with xmobar</h2>\r
368 <div class="sectionbody">\r
369 <div class="paragraph"><p>To get xmobar to start, you might need to copy the default configuration\r
370 file to <tt>~/.xmobarrc</tt>. Also, ensure that the <tt>output_format</tt> option for i3status\r
371 is set to <tt>xmobar</tt>.</p></div>\r
372 <div class="paragraph"><p><strong>Example for usage of i3status with xmobar</strong>:</p></div>\r
373 <div class="listingblock">\r
374 <div class="content">\r
375 <pre><tt>i3status | xmobar -o -t "%StdinReader%" -c "[Run StdinReader]"</tt></pre>\r
376 </div></div>\r
377 </div>\r
378 </div>\r
379 <div class="sect1">\r
380 <h2 id="_what_about_memory_usage_or_cpu_frequency">8. What about memory usage or CPU frequency?</h2>\r
381 <div class="sectionbody">\r
382 <div class="paragraph"><p>While talking about two specific things, please understand this section as a\r
383 general explanation why your favorite information is not included in i3status.</p></div>\r
384 <div class="paragraph"><p>Let’s talk about memory usage specifically. It is hard to measure memory in a\r
385 way which is accurate or meaningful. An in-depth understanding of how paging\r
386 and virtual memory work in your operating system is required. Furthermore, even\r
387 if we had a well-defined way of displaying memory usage and you would\r
388 understand it, I think that it’s not helpful to repeatedly monitor your memory\r
389 usage. One reason for that is that I have not run out of memory in the last few\r
390 years.  Memory has become so cheap that even in my 4 year old notebook, I have\r
391 8 GiB of RAM. Another reason is that your operating system will do the right\r
392 thing anyway: Either you have not enough RAM for your workload, but you need to\r
393 do it anyway, then your operating system will swap. Or you don’t have enough\r
394 RAM and you want to restrict your workload so that it fits, then the operating\r
395 system will kill the process using too much RAM and you can act accordingly.</p></div>\r
396 <div class="paragraph"><p>For CPU frequency, the situation is similar. Many people don’t understand how\r
397 frequency scaling works precisely. The generally recommended CPU frequency\r
398 governor ("ondemand") changes the CPU frequency far more often than i3status\r
399 could display it. The display number is therefore often incorrect and doesn’t\r
400 tell you anything useful either.</p></div>\r
401 <div class="paragraph"><p>In general, i3status wants to display things which you would look at\r
402 occasionally anyways, like the current date/time, whether you are connected to\r
403 a WiFi network or not, and if you have enough disk space to fit that 4.3 GiB\r
404 download.</p></div>\r
405 <div class="paragraph"><p>However, if you need to look at some kind of information more than once in a\r
406 while (like checking repeatedly how full your RAM is), you are probably better\r
407 off with a script doing that, which pops up an alert when your RAM usage reaches\r
408 a certain threshold. After all, the point of computers is not to burden you\r
409 with additional boring tasks like repeatedly checking a number.</p></div>\r
410 </div>\r
411 </div>\r
412 <div class="sect1">\r
413 <h2 id="_external_scripts_programs_with_i3status">9. External scripts/programs with i3status</h2>\r
414 <div class="sectionbody">\r
415 <div class="paragraph"><p>In i3status, we don’t want to implement process management again. Therefore,\r
416 there is no module to run arbitrary scripts or commands. Instead, you should\r
417 use your shell, for example like this:</p></div>\r
418 <div class="paragraph"><p><strong>Example for prepending the i3status output</strong>:</p></div>\r
419 <div class="listingblock">\r
420 <div class="content">\r
421 <pre><tt>#!/bin/sh\r
422 # shell script to prepend i3status with more stuff\r
423 \r
424 i3status | while :\r
425 do\r
426         read line\r
427         echo "mystuff | $line" || exit 1\r
428 done</tt></pre>\r
429 </div></div>\r
430 <div class="paragraph"><p>Put that in some script, say <tt>.bin/my_i3status.sh</tt> and execute that instead of i3status.</p></div>\r
431 <div class="paragraph"><p>Note that if you want to use the JSON output format (with colors in i3bar), you\r
432 need to use a slightly more complex wrapper script. There are examples in the\r
433 contrib/ folder, see <a href="http://code.i3wm.org/i3status/tree/contrib">http://code.i3wm.org/i3status/tree/contrib</a></p></div>\r
434 </div>\r
435 </div>\r
436 <div class="sect1">\r
437 <h2 id="_see_also">10. SEE ALSO</h2>\r
438 <div class="sectionbody">\r
439 <div class="paragraph"><p><tt>strftime(3)</tt>, <tt>date(1)</tt>, <tt>glob(3)</tt>, <tt>dzen2(1)</tt>, <tt>xmobar(1)</tt></p></div>\r
440 </div>\r
441 </div>\r
442 <div class="sect1">\r
443 <h2 id="_authors">11. AUTHORS</h2>\r
444 <div class="sectionbody">\r
445 <div class="paragraph"><p>Michael Stapelberg and contributors</p></div>\r
446 <div class="paragraph"><p>Thorsten Toepper</p></div>\r
447 <div class="paragraph"><p>Baptiste Daroussin</p></div>\r
448 <div class="paragraph"><p>Axel Wagner</p></div>\r
449 <div class="paragraph"><p>Fernando Tarlá Cardoso Lemos</p></div>\r
450 </div>\r
451 </div>\r
452 </div>\r
453 <div id="footnotes"><hr /></div>\r
454 <div id="footer" lang="de">\r
455 © 2009-2011 Michael Stapelberg, <a href="/impress.html">Impressum</a>\r
456 </div>\r
457 </body>\r
458 </html>\r