]> git.sur5r.net Git - i3/i3status/blob - i3status.1
Implement flags for batteries to use the last full capacity. This breaks configfiles.
[i3/i3status] / i3status.1
1 .de Vb \" Begin verbatim text
2 .ft CW
3 .nf
4 .ne \\$1
5 ..
6 .de Ve \" End verbatim text
7 .ft R
8 .fi
9 ..
10
11 .TH i3status 1 "MAY 2009" Linux "User Manuals"
12
13 .SH NAME
14 i3status \- Generates a status line for dzen2 or wmii
15 .SH SYNOPSIS
16 .B i3status
17 .RB [\|\-c
18 .IR configfile \|]
19
20 .SH DESCRIPTION
21
22 .B i3status
23 is a small program (around 500 SLOC) for filling dzen2 or wmii's status bar via
24 its 9P pseudo filesystem. It is designed to be very efficient by issuing a very
25 small number of systemcalls (as the bar should be updated every second or at
26 your specified interval). This ensures that even under high load, your status bar
27 is updated correctly and it saves a little bit of battery life by not spawning
28 new processes every second like shell scripts does.
29
30 .SH CONFIGURATION
31 .TP
32 .B wlan
33 Specifies the name of your WLAN interface (e.g. wlan0 or ath0 or eth1). Don't
34 specify if you don't have a WLAN interface or if it should not be displayed.
35
36 .TP
37 .B eth
38 Specifies the name of your ethernet interface (e.g. eth0). Don't specify if you
39 don't have an ethernet interface or if it should not be displayed.
40
41 .TP
42 .B wmii_path
43 Specifies the path to the rbar-folder of your mounted wmii pseudo file system
44 (e.g. /mnt/wmii/rbar/). It has to be terminated by a slash.
45
46 .TP
47 .B time_format
48 Format for the time/date to be displayed. See strftime(3) or date(1). Don't
49 specify it if you don't want the time to be shown.
50
51 .TP
52 .B battery
53 The number of the battery you want to display. This option can be specified
54 multiple times to display multiple batteries. Don't specify it if you don't
55 have a battery. To get the number of the specific battery, see
56 /sys/class/power_supply/BAT*
57
58 If you want i3status to use the last full capacity instead of the design capacity
59 of the battery, specify the f-flag, like this:
60
61 .Vb 10
62 # Use the last full capacity
63 battery 0,f
64 .Ve
65
66 .TP
67 .B run_watch
68 You can specify this directive multiple times. Each line first has a name (one
69 word, separated by space) followed by a path (can contain wildcards, given to
70 glob(3)). The path is the path to a PID-file which contains just the process ID
71 of a process. i3status will then check if the process is still running and
72 displays "yes" or "no" depending on the status. This is useful for displaying
73 if your VPN is running, or dhclient for DHCP and so on...
74
75 .TP
76 .B order
77 Followed by a comma separated list of the modules (run, wlan, eth, battery,
78 load, time) this directive specifies the order of the information which should
79 be displayed. An order is accomplished by prefixing the files in wmii's /rbar
80 directory with a number, that is 0VPN, 1DHCP, 2time and so on..
81
82 .TP
83 .B color
84 If specified, color mode is on. This affects WLAN which will be displayed red
85 if WLAN is down and the run_watch system which will display the status in
86 red/green.
87
88 .TP
89 .B get_ethspeed
90 Get current speed of the ethernet interface using the same mechanism as
91 ethtool. You need to start i3status with root privileges to use this.
92
93 .TP
94 .B normcolors
95 Specifies the colors for background/border in the same format (html colorcodes)
96 as wmii's configuration (just the last two values), that is #222222 #333333 for
97 example. Text color will be determined automatically (red/green/#888888),
98 depending on context.
99
100 .TP
101 .B interval
102 Specifies the interval in which the status bar will be updated. If you got a
103 very slow system or feel you don't need so much information, you may want to
104 increase it.
105
106 .SH FILES
107 .TP
108 .B /etc/i3status.conf
109 System-wide configuration file.
110
111 .SH EXAMPLE CONFIGURATION
112 .PP
113 .Vb 10
114 \&wlan wlan0
115 \&eth eth0
116 \&wmii_path /mnt/wmii/rbar/
117 \&time_format %d.%m.%Y %H:%M:%S
118 \&battery 0
119 \&battery 1,f
120 \&run_watch DHCP /var/run/dhclient*.pid
121 \&run_watch VPN /var/run/vpnc*.pid
122 \&order run,wlan,eth,battery,load,time
123 \&normcolors #000000 #333333
124 \&color
125 .Ve
126
127 .SH MOUNTING WMII'S PSEUDO FILESYSTEM
128 As of now (February 2009, Linux 2.6.28) you can mount wmii's 9P pseudo filesystem using:
129 .PP
130 .Vb 3
131 mount -t 9p -o rw,trans=unix,uname=michael,dfltuid=1000,dfltgid=50,name=michael,noauto,noextend /tmp/ns.michael.:0/wmii /mnt/wmii 
132 # Perhaps you need to load module 9pnet_fd if that does not work
133 modprobe 9pnet_fd
134 .Ve
135
136 .SH BUGS
137 Sometimes, i3status crashes when the wlan interface vanishes (killswitch). I
138 haven't yet found the bug, as it is not reproducible. If you can reproduce
139 this, please fix it and send me a patch.
140
141 .SH SEE ALSO
142 .BR strftime (3),
143 .BR date (1),
144 .BR glob (3)
145
146 .SH AUTHOR
147 Michael Stapelberg <michael+i3status at stapelberg dot de>
148
149 .SH WEBSITE
150 See http://michael.stapelberg.de/i3status for the newest release.