woops, fixed batt stuff
[monky] / README
1 conky(1)                                                              conky(1)
2
3
4
5 NAME
6        conky - A system monitor for X originally based on the torsmo code, but
7        more kickass. It just keeps on given'er. Yeah.
8
9 SYNOPSIS
10        conky [options]
11
12 DESCRIPTION
13        Conky is a system monitor for X originally based on  the  torsmo  code.
14        Since  it's original conception, Conky has changed a fair bit from it's
15        predecessor.  Conky can display just about  anything,  either  on  your
16        root  desktop  or in it's own window.  Conky has many built-in objects,
17        as well as the ability to execute programs and  scripts,  then  display
18        the output from stdout.
19
20        We  are  always  looking  for help, and anyone interested in becoming a
21        developer is welcome.  Please use the facilities at SourceForge to make
22        bug reports, feature requests, and submit patches.
23
24        Thanks for your interest in Conky.
25
26 COMPILING
27        For  users  compiling from source, make sure you have the X development
28        libraries installed.  This should be  a  package  along  the  lines  of
29        "libx11-dev or xorg-x11-dev".
30
31        Gentoo users -- Conky is in Gentoo's Portage... simply use "emerge app-
32        admin/conky" for installation.  There is  also  usually  an  up-to-date
33        ebuild within Conky's package or in Svn.
34
35        Debian,etc.  users  --  Conky will be in Debian's repositories soon (by
36        mid-September, hopefully), and then Ubuntu  shortly  thereafter.  Until
37        then, "dpkg -i" the .deb package to install.
38
39        Example  to  compile  and  run Conky with all optional components (note
40        that some configure options may differ for your system):
41
42        sh autogen.sh # Only required if building from Svn
43
44        ./configure            --prefix=/usr            --mandir=/usr/share/man
45        --infodir=/usr/share/info     --datadir=/usr/share    --sysconfdir=/etc
46        --localstatedir=/var/lib   --enable-xft   --enable-seti   --enable-dou-
47        ble-buffer    --enable-own-window   --enable-proc-uptime   --enable-mpd
48        --enable-mldonkey    --enable-x11    --enable-portmon     --enable-xmms
49        --enable-bmp --enable-audacious --enable-infopipe --enable-bmpx
50
51        make
52
53        make install # Optional
54
55        src/conky
56
57        Conky probably doesn't compile with compilers other than gcc  and  icc.
58        It  doesn't  compile  with C89 compiler and not even with pure C99.  It
59        uses a few things that might not exist: strdup(),  strcasecmp(),  strn-
60        casecmp(),  optarg  variable  with getopt() and long long (not in C89).
61        Crashes in file system statistics stuff when compiled with icc, I don't
62        know exactly why.
63
64        You  can disable 'drawing to own window' feature in case you don't need
65        it by passing --disable-own-window to configure -script.
66
67
68 YOU SHOULD KNOW
69        Conky is generally very good on resources. However, certain objects  in
70        Conky  are  harder  on resources then others. In particular, the $tail,
71        $top, $font, and $graph objects are quite costly in comparison  to  the
72        rest of Conky.
73
74        If  you  do use them, please do not complain about memory or CPU usage,
75        unless you think something's seriously wrong (mem leak, etc.).
76
77        An easy way to force Conky to reload your ~/.conkyrc: "killall -SIGUSR1
78        conky".  Saves you the trouble of having to kill and then restart.
79
80        IMPORTANT:  For  previous Conky users, Conky 1.3 no longer supports the
81        metar stuff.  mdsplib was causing  way  too  many  problems.  Hopefully
82        there'll be a better solution in Conky 2.x...
83
84 OPTIONS
85        Command  line  options override configurations defined in configuration
86        file.
87
88        -v | -V
89               Prints version and exits
90
91
92        -a ALIGNMENT
93               Text alignment on screen, {top,bottom}_{left,right} or none
94
95
96        -b     Use double buffering (eliminates "flicker")
97
98
99        -c FILE
100               Config file to load instead of $HOME/.conkyrc
101
102
103        -d     Daemonize Conky, aka fork to background
104
105
106        -f FONT
107               Font to use
108
109
110        -h     Prints command line help and exits
111
112
113        -o     Create own window to draw
114
115
116        -t TEXT
117               Text to render, remember single quotes, like -t ' $uptime '
118
119
120        -u SECONDS
121               Update interval
122
123
124        -w WIN_ID
125               Window id to draw
126
127
128        -x X_COORDINATE
129               X position
130
131
132        -y Y_COORDINATE
133               Y position
134
135
136 CONFIGURATION SETTINGS
137        Default configuration file  is  $HOME/.conkyrc  (can  be  changed  from
138        conky.c  among  other  things).  See conkyrc.sample. If installing from
139        Debian package, this should be in /usr/share/doc/conky/examples  ("gun-
140        zip conkyrc.sample.gz" to get conkyrc.sample).
141
142        You  might  want  to copy it to $HOME/.conkyrc and then start modifying
143        it.  Other configs can be found at http://conky.sf.net
144
145        alignment
146               Aligned position on screen, may  be  top_left,  top_right,  bot-
147               tom_left, bottom_right, or none
148
149
150        background
151               Boolean  value, if true, Conky will be forked to background when
152               started
153
154
155        on_bottom
156               Set conky on the bottom of all other applications
157
158
159        border_margin
160               Border margin in pixels
161
162
163        border_width
164               Border width in pixels
165
166
167        cpu_avg_samples
168               The number of samples to average for CPU monitoring
169
170
171        default_color
172               Default color and border color
173
174
175        default_shade_color
176               Default shading color and border's shading color
177
178
179        default_outline_color
180               Default outline color
181
182
183        double_buffer
184               Use the Xdbe extension? (eliminates flicker) It is highly recom-
185               mended to use own window with this one so double buffer won't be
186               so big.
187
188
189        draw_borders
190               Draw borders around text?
191
192
193        draw_graph_borders
194               Draw borders around graphs?
195
196
197        draw_shades
198               Draw shades?
199
200
201        draw_outline
202               Draw outlines?
203
204
205        font   Font name in X, xfontsel can be used to get a nice font
206
207
208        gap_x  Gap between right or left border of screen, same as  passing  -x
209               at command line
210
211
212        gap_y  Gap  between  top or bottom border of screen, same as passing -y
213               at command line
214
215
216        no_buffers
217               Substract (file system) buffers from used memory?
218
219
220        mail_spool
221               Mail spool for mail checking
222
223
224        maximum_width pixels
225               Maximum width of window
226
227
228        minimum_size width (height)
229               Minimum size of window
230
231
232        min_port_monitors
233               Allow for the creation of at least this number of port  monitors
234               (if 0 or not set, default is 16)
235
236
237        min_port_monitor_connections
238               Allow  each port monitor to track at least this many connections
239               (if 0 or not set, default is 256)
240
241
242        mldonkey_hostname
243               Hostname for mldonkey stuff, defaults to localhost
244
245
246        mldonkey_port
247               Mldonkey port, 4001 default
248
249
250        mldonkey_login
251               Mldonkey login, default none
252
253
254        mldonkey_password
255               Mldonkey password, default none
256
257
258        mpd_host
259               Host of MPD server
260
261
262        mpd_port
263               Port of MPD server
264
265
266        mpd_password
267               MPD server password
268
269
270        net_avg_samples
271               The number of samples to average for net data
272
273
274        override_utf8_locale
275               Force UTF8? requires XFT
276
277
278        own_window
279               Boolean, create own window to draw?
280
281
282        own_window_transparent
283               Boolean, set pseudo-transparency?
284
285
286        own_window_type
287               if own_window is yes, you may specify type  normal,  desktop  or
288               override (default: normal).  Desktop windows are special windows
289               that have no window decorations;  are  always  visible  on  your
290               desktop;  do not appear in your pager or taskbar; and are sticky
291               across all workspaces.  Override windows are not under the  con-
292               trol of the window manager. Hints are ignored. This type of win-
293               dow can be useful for certain situations.
294
295
296        own_window_colour colour
297               If own_window_transparent no, set a specified background  colour
298               (defaults  to  black).  Takes  either a hex value (#ffffff) or a
299               valid RGB name (see /usr/lib/X11/rgb.txt)
300
301
302        own_window_hints undecorated,below,above,sticky,skip_taskbar,skip_pager
303               If own_window is yes, you may use these window manager hints  to
304               affect the way conky displays.  Notes: Use own_window_type desk-
305               top as another way to implement many of these hints  implicitly.
306               If  you  use own_window_type override, window manager hints have
307               no meaning and are ignored.
308
309
310        out_to_console
311               Print text to stdout.
312
313
314        pad_percents
315               Pad percentages to this many decimals (0 = no padding)
316
317
318        stippled_borders
319               Border stippling (dashing) in pixels
320
321
322        total_run_times
323               Total number of times for Conky to update before quitting.  Zero
324               makes Conky run forever
325
326
327        update_interval
328               Update interval in seconds
329
330
331        uppercase
332               Boolean value, if true, text is rendered in upper case
333
334
335        use_spacer
336               Adds spaces after certain objects to stop them from moving other
337               things around. Note that this only helps if you are using a mono
338               font, such as Bitstream Vera Sans Mono.
339
340
341        use_xft
342               Use Xft (anti-aliased font and stuff)
343
344
345        wm_class_name
346               Manually set the WM_CLASS name. Defaults to "conky".
347
348
349        xftalpha
350               Alpha of Xft font. Must be a value at or between 1 and 0.
351
352
353        xftfont
354               Xft font to use.
355
356
357        xmms_player
358               Use specified player/plugin for the xmms status variables. Valid
359               items are: none, xmms, bmp, audacious and infopipe. (default  is
360               none). Note that bmpx is currently handled separately.
361
362
363        TEXT   After this begins text to be formatted on screen
364
365
366 VARIABLES
367        Colors  are  parsed using XParsecolor(), there might be a list of them:
368        /usr/X11R6/lib/X11/rgb.txt.   Also,   http://sedition.com/perl/rgb.html
369        [http://sedition.com/perl/rgb.html].  Color can be also in #rrggbb for-
370        mat (hex).  Note that when displaying bytes, power is 1024 and not 1000
371        so 1M really means 1024*1024 bytes and not 1000*1000.
372
373        addr interface
374               IP address for an interface
375
376
377        acpiacadapter
378               ACPI ac adapter state.
379
380
381        acpifan
382               ACPI fan state
383
384
385        acpitemp
386               ACPI temperature in C.
387
388
389        acpitempf
390               ACPI temperature in F.
391
392
393        adt746xcpu
394               CPU temperature from therm_adt746x
395
396
397        adt746xfan
398               Fan speed from therm_adt746x
399
400
401        alignr (num)
402               Right-justify text, with space of N
403
404
405        alignc (num)
406               Align text to centre
407
408
409        apm_adapter
410               Display APM AC adapter status (FreeBSD only)
411
412
413        apm_battery_life
414               Display APM battery life in percent (FreeBSD only)
415
416
417        apm_battery_time
418               Display  remaining  APM battery life in hh:mm:ss or "unknown" if
419               AC adapterstatus is on-line or charging (FreeBSD only)
420
421
422        battery (num)
423               Remaining capacity in ACPI or APM battery. ACPI  battery  number
424               can be given as argument (default is BAT0).
425
426
427        bmpx_artist
428               Artist in current BMPx track
429
430
431        bmpx_album
432               Album in current BMPx track
433
434
435        bmpx_title
436               Title of the current BMPx track
437
438
439        bmpx_track
440               Track number of the current BMPx track
441
442
443        bmpx_bitrate
444               Bitrate of the current BMPx track
445
446
447        bmpx_uri
448               URI of the current BMPx track
449
450
451        buffers
452               Amount of memory buffered
453
454
455        cached Amount of memory cached
456
457
458        color (color)
459               Change drawing color to color
460
461
462        cpu (cpuN)
463               CPU  usage  in percents. For SMP machines, the CPU number can be
464               provided as an argument. cpu0 is the total usage, and >=cpu1 are
465               individual CPUs.
466
467
468        cpubar (cpu number) (height),(width)
469               Bar  that shows CPU usage, height is bar's height in pixels. See
470               $cpu for more info on SMP.
471
472
473        cpugraph (cpu number) (height),(width) (gradient  colour  1)  (gradient
474        colour 2)
475               CPU usage graph, with optional colours in hex, minus the #.  See
476               $cpu for more info on SMP.
477
478
479        diskio Displays current disk IO.
480
481
482        diskiograph  (height),(width)  (gradient  colour 1) (gradient colour 2)
483        (scale)
484               Disk  IO graph, colours defined in hex, minus the #. If scale is
485               non-zero, it becomes the scale for the graph.
486
487
488        downspeed net
489               Download speed in kilobytes
490
491
492        downspeedf net
493               Download speed in kilobytes with one decimal
494
495
496        downspeedgraph  net  (height),(width)  (gradient  colour  1)  (gradient
497        colour 2) (scale)
498               Download speed graph, colours defined in hex, minus  the  #.  If
499               scale is non-zero, it becomes the scale for the graph.
500
501
502        else   Text to show if any of the above are not true
503
504
505        exec command
506               Executes a shell command and displays the output in conky. warn-
507               ing: this takes a lot more resources than other  variables.  I'd
508               recommend coding wanted behaviour in C and posting a patch.
509
510
511        execbar command
512               Same  as  exec,  except  if  the  first  value return is a value
513               between 0-100, it will use that number for a bar. The  size  for
514               the bar is currently fixed, but that may change in the future.
515
516
517        execgraph command
518               Same as execbar, but graphs values.
519
520
521        execi interval command
522               Same  as exec but with specific interval. Interval can't be less
523               than update_interval in configuration. See also $texeci
524
525
526        execibar interval command
527               Same as execbar, except with an interval
528
529
530        execigraph interval command
531               Same as execigraph, but takes an interval arg graphs values
532
533
534        font font
535               Specify a different font. Only applies to one line.
536
537
538        freq   Returns CPU frequency in MHz
539
540
541        freq_g Returns CPU frequency in GHz
542
543
544        freq_dyn
545               Returns CPU frequency in MHz, but is calculated by  counting  to
546               clock  cycles  to  complete  an  instruction. Only available for
547               x86/amd64.
548
549
550        freq_dyn_g
551               Returns CPU frequency in GHz, but is calculated by  counting  to
552               clock  cycles  to  complete  an  instruction. Only available for
553               x86/amd64.
554
555
556        fs_bar (height),(width) fs
557               Bar that shows how much space is used on a file  system.  height
558               is the height in pixels. fs is any file on that file system.
559
560
561        fs_free (fs)
562               Free space on a file system available for users.
563
564
565        fs_free_perc (fs)
566               Free percentage of space on a file system available for users.
567
568
569        fs_size (fs)
570               File system size
571
572
573        fs_used (fs)
574               File system used space
575
576
577        head logfile lines (interval)
578               Displays  first  N lines of supplied text text file. If interval
579               is not supplied, Conky assumes 2x Conky's interval.  Max  of  30
580               lines can be displayed, or until the text buffer is filled.
581
582
583        hr (height)
584               Horizontal line, height is the height in pixels
585
586
587        i2c (dev) type n
588               I2C  sensor  from  sysfs  (Linux 2.6). dev may be omitted if you
589               have only one I2C device. type is either  in  (or  vol)  meaning
590               voltage, fan meaning fan or temp/tempf (first in C, second in F)
591               meaning  temperature.  n  is   number   of   the   sensor.   See
592               /sys/bus/i2c/devices/ on your local computer.
593
594
595        i8k_ac_status
596               If  running the i8k kernel driver for Inspiron laptops, displays
597               whether ac power is on, as listed in  /proc/i8k  (translated  to
598               human-readable).  Beware  that this is by default not enabled by
599               i8k itself.
600
601
602        i8k_bios
603               If running the i8k kernel driver for Inspiron laptops,  displays
604               the bios version as listed in /proc/i8k.
605
606
607        i8k_buttons_status
608               If  running the i8k kernel driver for Inspiron laptops, displays
609               the volume buttons status as listed in /proc/i8k.
610
611
612        i8k_cpu_temp
613               If running the i8k kernel driver for Inspiron laptops,  displays
614               the cpu temperature in Celsius, as reported by /proc/i8k.
615
616
617        i8k_cpu_tempf
618               If  running the i8k kernel driver for Inspiron laptops, displays
619               the cpu temperature in Farenheit, as reported by /proc/i8k.
620
621
622        i8k_left_fan_rpm
623               If running the i8k kernel driver for Inspiron laptops,  displays
624               the  left  fan's  rate of rotation, in revolutions per minute as
625               listed in /proc/i8k. Beware, some laptops i8k reports these fans
626               in reverse order.
627
628
629        i8k_left_fan_status
630               If  running the i8k kernel driver for Inspiron laptops, displays
631               the left fan status as listed in /proc/i8k (translated to human-
632               readable).  Beware,  some  laptops  i8k  reports  these  fans in
633               reverse order.
634
635
636        i8k_right_fan_rpm
637               If running the i8k kernel driver for Inspiron laptops,  displays
638               the  right  fan's rate of rotation, in revolutions per minute as
639               listed in /proc/i8k. Beware, some laptops i8k reports these fans
640               in reverse order.
641
642
643        i8k_right_fan_status
644               If  running the i8k kernel driver for Inspiron laptops, displays
645               the right fan status  as  listed  in  /proc/i8k  (translated  to
646               human-readable).  Beware, some laptops i8k reports these fans in
647               reverse order.
648
649
650        i8k_serial
651               If running the i8k kernel driver for Inspiron laptops,  displays
652               your laptop serial number as listed in /proc/i8k.
653
654
655        i8k_version
656               If  running the i8k kernel driver for Inspiron laptops, displays
657               the version formatting of /proc/i8k.
658
659
660        if_running (process)
661               if PROCESS is running, display  everything  if_running  and  the
662               matching $endif
663
664
665        if_existing (file)
666               if  FILE  exists, display everything between if_existing and the
667               matching $endif
668
669
670        if_mounted (mountpoint)
671               if MOUNTPOINT is mounted, display everything between  if_mounted
672               and the matching $endif
673
674
675        kernel Kernel version
676
677
678        linkstatus interface
679               Get the link status for wireless connections
680
681
682        loadavg
683               (1,2,3)> System load average, 1 is for past 1 minute, 2 for past
684               5 minutes and 3 for past 15 minutes.
685
686
687        machine
688               Machine, i686 for example
689
690
691        mails  Mail count in mail spool. You can use program like fetchmail  to
692               get  mails  from  some server using your favourite protocol. See
693               also new_mails.
694
695
696        mem    Amount of memory in use
697
698
699        membar (height),(width)
700               Bar that shows amount of memory in use
701
702
703        memmax Total amount of memory
704
705
706        memperc
707               Percentage of memory in use
708
709
710        mpd_artist
711               Artist in current MPD song must be enabled at compile
712
713
714        mpd_album
715               Album in current MPD song
716
717
718        mpd_bar (height),(width)
719               Bar of mpd's progress
720
721
722        mpd_bitrate
723               Bitrate of current song
724
725
726        mpd_status
727               Playing, stopped, et cetera.
728
729
730        mpd_title
731               Title of current MPD song
732
733
734        mpd_vol
735               MPD's volume
736
737
738        mpd_elapsed
739               Song's elapsed time
740
741
742        mpd_length
743               Song's length
744
745
746        mpd_percent
747               Percent of song's progress
748
749
750        mpd_random
751               Random status (On/Off)
752
753
754        mpd_repeat
755               Repeat status (On/Off)
756
757
758        mpd_track
759               Prints the MPD track field
760
761
762        mpd_name
763               Prints the MPD name field
764
765
766        mpd_file
767               Prints the file name of the current MPD song
768
769
770        mpd_smart
771               Prints the song name in either the form "artist - title" or file
772               name, depending on whats available
773
774
775        new_mails
776               Unread mail count in mail spool.
777
778
779        nodename
780               Hostname
781
782
783        outlinecolor (color)
784               Change outline color
785
786
787        pb_battery item
788               If running on Apple powerbook/ibook, display information on bat-
789               tery status. The item parameter specifies, what  information  to
790               display. Exactly one item must be specified. Valid items are:
791
792               status: Display if battery is fully charged, charging, discharg-
793               ing or absent (running on AC)
794
795               percent: Display charge of battery in percent,  if  charging  or
796               discharging.  Nothing  will  be  displayed,  if battery is fully
797               charged or absent.
798
799               time: Display the time remaining until the battery will be fully
800               charged  or discharged at current rate. Nothing is displayed, if
801               battery is absent or if it's present but fully charged  and  not
802               discharging.
803
804
805        pre_exec shell command
806               Executes a shell command one time before conky displays anything
807               and puts output as text.
808
809
810        processes
811               Total processes (sleeping and running)
812
813
814        running_processes
815               Running processes (not sleeping), requires Linux 2.6
816
817
818        shadecolor (color)
819               Change shading color
820
821
822        stippled_hr (space)
823               Stippled (dashed) horizontal line
824
825
826        swapbar (height),(width)
827               Bar that shows amount of swap in use
828
829
830        swap   Amount of swap in use
831
832
833        swapmax
834               Total amount of swap
835
836
837        swapperc
838               Percentage of swap in use
839
840
841        sysname
842               System name, Linux for example
843
844
845        tcp_portmon port_begin port_end item (index) (ip4 only at present)
846               TCP port monitor for specified local ports. Port numbers must be
847               in the range 1 to 65535. Valid items are:
848
849               count - total number of connections in the range
850
851               rip - remote ip address
852
853               rhost - remote host name
854
855               rport - remote port number
856
857               rservice - remote service name from /etc/services
858
859               lip - local ip address
860
861               lhost - local host name
862
863               lport - local port number
864
865               lservice - local service name from /etc/services
866
867               The connection index provides you with access to each connection
868               in the port monitor. The monitor  will  return  information  for
869               index  values  from 0 to n-1 connections. Values higher than n-1
870               are simply ignored. For the "count" item, the  connection  index
871               must be omitted. It is required for all other items.
872
873               Examples:
874
875               ${tcp_portmon  6881 6999 count} - displays the number of connec-
876               tions in the bittorrent port range
877
878               ${tcp_portmon 22 22 rip 0} - displays the remote host ip of  the
879               first sshd connection
880
881               ${tcp_portmon  22 22 rip 9} - displays the remote host ip of the
882               tenth sshd connection
883
884               ${tcp_portmon 1 1024 rhost 0} - displays the remote host name of
885               the first connection on a privileged port
886
887               ${tcp_portmon 1 1024 rport 4} - displays the remote host port of
888               the fifth connection on a privileged port
889
890               ${tcp_portmon 1 65535 lservice 14} - displays the local  service
891               name of the fifteenth connection in the range of all ports
892
893               Note that port monitor variables which share the same port range
894               actually refer to the same monitor, so many references to a sin-
895               gle port range for different items and different indexes all use
896               the same monitor internally. In other words, the program  avoids
897               creating redundant monitors.
898
899        texeci interval command
900               Runs  a  command at an interval inside a thread and displays the
901               output. Same as $execi, except  the  command  is  run  inside  a
902               thread.  Use this if you have a slow script to keep Conky updat-
903               ing. You should make the interval slightly longer then the  time
904               it  takes  your  script  to  execute. For example, if you have a
905               script that take 5 seconds  to  execute,  you  should  make  the
906               interval at least 6 seconds. See also $execi.
907
908
909        offset (pixels)
910               Move text over by N pixels. See also $voffset.
911
912
913        tail logfile lines (interval)
914               Displays last N lines of supplied text text file. If interval is
915               not supplied, Conky assumes 2x Conky's interval. Max of 30 lines
916               can be displayed, or until the text buffer is filled.
917
918
919        time (format)
920               Local  time, see man strftime to get more information about for-
921               mat
922
923
924        totaldown net
925               Total download, overflows at 4 GB on Linux with 32-bit arch  and
926               there  doesn't  seem  to  be a way to know how many times it has
927               already done that before conky has started.
928
929
930        top type, num
931               This takes arguments in the form:top (name) (number)  Basically,
932               processes  are  ranked  from  highest  to lowest in terms of cpu
933               usage, which is what (num) represents. The  types  are:  "name",
934               "pid",  "cpu",  and  mem".  There  can  be a max of 10 processes
935               listed.
936
937
938        top_mem type, num
939               Same as top, except sorted by mem usage instead of cpu
940
941
942        totalup net
943               Total upload, this one too, may overflow
944
945
946        updates Number of updates
947               for debugging
948
949
950        upspeed net
951               Upload speed in kilobytes
952
953
954        upspeedf net
955               Upload speed in kilobytes with one decimal
956
957
958        upspeedgraph net (height),(width) (gradient colour 1) (gradient  colour
959        2) (scale)
960               Upload speed graph, colours defined in  hex,  minus  the  #.  If
961               scale is non-zero, it becomes the scale for the graph.
962
963
964        uptime Uptime
965
966
967        uptime_short
968               Uptime in a shorter format
969
970
971        seti_prog
972               Seti@home current progress
973
974
975        seti_progbar (height),(width)
976               Seti@home current progress bar
977
978
979        seti_credit
980               Seti@home total user credit
981
982
983        voffset (pixels)
984               Change  vertical  offset by N pixels. Negative values will cause
985               text to overlap. See also $offset.
986
987
988        xmms_bar (height),(width)
989               xmms / bmp / audacious / infopipe: progress bar
990
991
992        xmms_bitrate
993               xmms / bmp / audacious / infopipe: bitrate of current tune
994
995
996        xmms_channels
997               xmms / bmp / audacious / infopipe: number of audio  channels  of
998               current tune
999
1000
1001        xmms_filename
1002               xmms  /  bmp  /  audacious / infopipe: full path and filename of
1003               current tune
1004
1005
1006        xmms_frequency
1007               xmms / bmp / audacious / infopipe: sampling frequency of current
1008               tune
1009
1010
1011        xmms_length
1012               xmms  / bmp / audacious / infopipe: total length of current tune
1013               as MM:SS
1014
1015
1016        xmms_length_seconds
1017               xmms / bmp / audacious / infopipe: total length of current  tune
1018               in seconds
1019
1020
1021        xmms_playlist_position
1022               xmms  / bmp / audacious / infopipe: playlist position of current
1023               tune
1024
1025
1026        xmms_playlist_length
1027               xmms / bmp / audacious / infopipe: number of tunes in playlist
1028
1029
1030        xmms_position
1031               xmms / bmp / audacious / infopipe:  MM:SS  position  of  current
1032               tune
1033
1034
1035        xmms_position_seconds
1036               xmms  /  bmp / audacious / infopipe: position of current tune in
1037               seconds
1038
1039
1040        xmms_status
1041               xmms  /  bmp  /  audacious  /  infopipe:  player  status  (Play-
1042               ing/Paused/Stopped/Not running)
1043
1044
1045        xmms_title
1046               xmms / bmp / audacious / infopipe: title of current tune
1047
1048
1049        ibm_fan
1050               If running the IBM ACPI, displays the fan speed.
1051
1052
1053        ibm_temps N
1054               If  running the IBM ACPI, displays the temperatures from the IBM
1055               temperature sensors (N=0..7) Sensor 0 is on the CPU, 3 is on the
1056               GPU.
1057
1058
1059        ibm_volume
1060               If  running  the  IBM  ACPI,  displays the "master" volume, con-
1061               trolled by the volume keys (0-14).
1062
1063
1064        ibm_brightness
1065               If running the IBM ACPI, displays the brigtness of the laptops's
1066               LCD (0-7).
1067
1068
1069 EXAMPLES
1070        conky -t '${time %D %H:%m}' -o -u 30
1071               Start Conky in its own window with date and clock as text and 30
1072               sec update interval.
1073
1074        conky -a top_left -x 5 -y 500 -d
1075               Start Conky to background at coordinates (5, 500).
1076
1077 FILES
1078        ~/.conkyrc default configuration file
1079
1080 BUGS
1081        Drawing to root or some other desktop window directly doesn't work with
1082        all window managers. Especially doesn't work well with Gnome and it has
1083        been reported that it doesn't work with KDE  either.  Nautilus  can  be
1084        disabled  from  drawing  to  desktop with program gconf-editor. Uncheck
1085        show_desktop in /apps/nautilus/preferences/.  There  is  -w  switch  in
1086        Conky  to  set  some  specific window id. You might find xwininfo -tree
1087        useful to find the window to draw to. You  can  also  use  -o  argument
1088        which makes Conky to create its own window.
1089
1090 SEE ALSO
1091        http://conky.sourceforge.net [http://conky.sourceforge.net]
1092
1093        http://www.sourceforge.net/projects/conky           [http://www.source-
1094        forge.net/projects/conky]
1095
1096        #conky on irc.freenode.net
1097
1098 AUTHORS
1099        The Conky dev team. What's up now!
1100
1101
1102
1103                                   2006-04-23                          conky(1)