converted repository ebuild to svn
[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 CVS.
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 CVS
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_colour colour
287               If own_window_transparent no, set a specified background  colour
288               (defaults  to  black).  Takes  either a hex value (#ffffff) or a
289               valid RGB name (see /usr/lib/X11/rgb.txt)
290
291
292        own_window_hints undecorated,below,above,sticky,skip_taskbar,skip_pager
293               If own_window is yes, you may use these window manager hints  to
294               affect the way conky displays
295
296
297        out_to_console
298               Print text to stdout.
299
300
301        pad_percents
302               Pad percentages to this many decimals (0 = no padding)
303
304
305        stippled_borders
306               Border stippling (dashing) in pixels
307
308
309        total_run_times
310               Total  number of times for Conky to update before quitting. Zero
311               makes Conky run forever
312
313
314        update_interval
315               Update interval in seconds
316
317
318        uppercase
319               Boolean value, if true, text is rendered in upper case
320
321
322        use_spacer
323               Adds spaces after certain objects to stop them from moving other
324               things around. Note that this only helps if you are using a mono
325               font, such as Bitstream Vera Sans Mono.
326
327
328        use_xft
329               Use Xft (anti-aliased font and stuff)
330
331
332        wm_class_name
333               Manually set the WM_CLASS name. Defaults to "conky".
334
335
336        xmms_player
337               Use specified player/plugin for the xmms status variables. Valid
338               items  are: none, xmms, bmp, audacious and infopipe. (default is
339               none). Note that bmpx is currently handled separately.
340
341
342        TEXT   After this begins text to be formatted on screen
343
344
345 VARIABLES
346        Colors are parsed using XParsecolor(), there might be a list  of  them:
347        /usr/X11R6/lib/X11/rgb.txt.   Also,   http://sedition.com/perl/rgb.html
348        [http://sedition.com/perl/rgb.html].  Color can be also in #rrggbb for-
349        mat (hex).  Note that when displaying bytes, power is 1024 and not 1000
350        so 1M really means 1024*1024 bytes and not 1000*1000.
351
352        addr interface
353               IP address for an interface
354
355
356        acpiacadapter
357               ACPI ac adapter state.
358
359
360        acpifan
361               ACPI fan state
362
363
364        acpitemp
365               ACPI temperature in C.
366
367
368        acpitempf
369               ACPI temperature in F.
370
371
372        adt746xcpu
373               CPU temperature from therm_adt746x
374
375
376        adt746xfan
377               Fan speed from therm_adt746x
378
379
380        alignr (num)
381               Right-justify text, with space of N
382
383
384        alignc (num)
385               Align text to centre
386
387
388        apm_adapter
389               Display APM AC adapter status (FreeBSD only)
390
391
392        apm_battery_life
393               Display APM battery life in percent (FreeBSD only)
394
395
396        apm_battery_time
397               Display remaining APM battery life in hh:mm:ss or  "unknown"  if
398               AC adapterstatus is on-line or charging (FreeBSD only)
399
400
401        battery (num)
402               Remaining  capacity  in ACPI or APM battery. ACPI battery number
403               can be given as argument (default is BAT0).
404
405
406        bmpx_artist
407               Artist in current BMPx track
408
409
410        bmpx_album
411               Album in current BMPx track
412
413
414        bmpx_title
415               Title of the current BMPx track
416
417
418        bmpx_track
419               Track number of the current BMPx track
420
421
422        bmpx_bitrate
423               Bitrate of the current BMPx track
424
425
426        bmpx_uri
427               URI of the current BMPx track
428
429
430        buffers
431               Amount of memory buffered
432
433
434        cached Amount of memory cached
435
436
437        color (color)
438               Change drawing color to color
439
440
441        cpu (cpuN)
442               CPU usage in percents. For SMP machines, the CPU number  can  be
443               provided as an argument. cpu0 is the total usage, and >=cpu1 are
444               individual CPUs.
445
446
447        cpubar (cpu number) (height),(width)
448               Bar that shows CPU usage, height is bar's height in pixels.  See
449               $cpu for more info on SMP.
450
451
452        cpugraph  (cpu  number)  (height),(width) (gradient colour 1) (gradient
453        colour 2)
454               CPU  usage graph, with optional colours in hex, minus the #. See
455               $cpu for more info on SMP.
456
457
458        diskio Displays current disk IO.
459
460
461        diskiograph (height),(width) (gradient colour 1)  (gradient  colour  2)
462        (scale)
463               Disk IO graph, colours defined in hex, minus the #. If scale  is
464               non-zero, it becomes the scale for the graph.
465
466
467        downspeed net
468               Download speed in kilobytes
469
470
471        downspeedf net
472               Download speed in kilobytes with one decimal
473
474
475        downspeedgraph  net  (height),(width)  (gradient  colour  1)  (gradient
476        colour 2) (scale)
477               Download  speed  graph,  colours defined in hex, minus the #. If
478               scale is non-zero, it becomes the scale for the graph.
479
480
481        else   Text to show if any of the above are not true
482
483
484        exec command
485               Executes a shell command and displays the output in conky. warn-
486               ing:  this  takes a lot more resources than other variables. I'd
487               recommend coding wanted behaviour in C and posting a patch.
488
489
490        execbar command
491               Same as exec, except if  the  first  value  return  is  a  value
492               between  0-100,  it will use that number for a bar. The size for
493               the bar is currently fixed, but that may change in the future.
494
495
496        execgraph command
497               Same as execbar, but graphs values.
498
499
500        execi interval command
501               Same as exec but with specific interval. Interval can't be  less
502               than update_interval in configuration. See also $texeci
503
504
505        execibar interval command
506               Same as execbar, except with an interval
507
508
509        execigraph interval command
510               Same as execigraph, but takes an interval arg graphs values
511
512
513        font font
514               Specify a different font. Only applies to one line.
515
516
517        freq   Returns CPU frequency in MHz
518
519
520        freq_g Returns CPU frequency in GHz
521
522
523        freq_dyn
524               Returns  CPU  frequency in MHz, but is calculated by counting to
525               clock cycles to complete  an  instruction.  Only  available  for
526               x86/amd64.
527
528
529        freq_dyn_g
530               Returns  CPU  frequency in GHz, but is calculated by counting to
531               clock cycles to complete  an  instruction.  Only  available  for
532               x86/amd64.
533
534
535        fs_bar (height),(width) fs
536               Bar  that  shows how much space is used on a file system. height
537               is the height in pixels. fs is any file on that file system.
538
539
540        fs_free (fs)
541               Free space on a file system available for users.
542
543
544        fs_free_perc (fs)
545               Free percentage of space on a file system available for users.
546
547
548        fs_size (fs)
549               File system size
550
551
552        fs_used (fs)
553               File system used space
554
555
556        head logfile lines (interval)
557               Displays first N lines of supplied text text file.  If  interval
558               is  not  supplied,  Conky assumes 2x Conky's interval. Max of 30
559               lines can be displayed, or until the text buffer is filled.
560
561
562        hr (height)
563               Horizontal line, height is the height in pixels
564
565
566        i2c (dev) type n
567               I2C sensor from sysfs (Linux 2.6). dev may  be  omitted  if  you
568               have  only  one  I2C  device. type is either in (or vol) meaning
569               voltage, fan meaning fan or temp/tempf (first in C, second in F)
570               meaning   temperature.   n   is   number   of  the  sensor.  See
571               /sys/bus/i2c/devices/ on your local computer.
572
573
574        i8k_ac_status
575               If running the i8k kernel driver for Inspiron laptops,  displays
576               whether  ac  power  is on, as listed in /proc/i8k (translated to
577               human-readable). Beware that this is by default not  enabled  by
578               i8k itself.
579
580
581        i8k_bios
582               If  running the i8k kernel driver for Inspiron laptops, displays
583               the bios version as listed in /proc/i8k.
584
585
586        i8k_buttons_status
587               If running the i8k kernel driver for Inspiron laptops,  displays
588               the volume buttons status as listed in /proc/i8k.
589
590
591        i8k_cpu_temp
592               If  running the i8k kernel driver for Inspiron laptops, displays
593               the cpu temperature in Celsius, as reported by /proc/i8k.
594
595
596        i8k_cpu_tempf
597               If running the i8k kernel driver for Inspiron laptops,  displays
598               the cpu temperature in Farenheit, as reported by /proc/i8k.
599
600
601        i8k_left_fan_rpm
602               If  running the i8k kernel driver for Inspiron laptops, displays
603               the left fan's rate of rotation, in revolutions  per  minute  as
604               listed in /proc/i8k. Beware, some laptops i8k reports these fans
605               in reverse order.
606
607
608        i8k_left_fan_status
609               If running the i8k kernel driver for Inspiron laptops,  displays
610               the left fan status as listed in /proc/i8k (translated to human-
611               readable). Beware,  some  laptops  i8k  reports  these  fans  in
612               reverse order.
613
614
615        i8k_right_fan_rpm
616               If  running the i8k kernel driver for Inspiron laptops, displays
617               the right fan's rate of rotation, in revolutions per  minute  as
618               listed in /proc/i8k. Beware, some laptops i8k reports these fans
619               in reverse order.
620
621
622        i8k_right_fan_status
623               If running the i8k kernel driver for Inspiron laptops,  displays
624               the  right  fan  status  as  listed  in /proc/i8k (translated to
625               human-readable). Beware, some laptops i8k reports these fans  in
626               reverse order.
627
628
629        i8k_serial
630               If  running the i8k kernel driver for Inspiron laptops, displays
631               your laptop serial number as listed in /proc/i8k.
632
633
634        i8k_version
635               If running the i8k kernel driver for Inspiron laptops,  displays
636               the version formatting of /proc/i8k.
637
638
639        if_running (process)
640               if  PROCESS  is  running,  display everything if_running and the
641               matching $endif
642
643
644        if_existing (file)
645               if FILE exists, display everything between if_existing  and  the
646               matching $endif
647
648
649        if_mounted (mountpoint)
650               if  MOUNTPOINT is mounted, display everything between if_mounted
651               and the matching $endif
652
653
654        kernel Kernel version
655
656
657        linkstatus interface
658               Get the link status for wireless connections
659
660
661        loadavg
662               (1,2,3)> System load average, 1 is for past 1 minute, 2 for past
663               5 minutes and 3 for past 15 minutes.
664
665
666        machine
667               Machine, i686 for example
668
669
670        mails  Mail  count in mail spool. You can use program like fetchmail to
671               get mails from some server using your  favourite  protocol.  See
672               also new_mails.
673
674
675        mem    Amount of memory in use
676
677
678        membar (height),(width)
679               Bar that shows amount of memory in use
680
681
682        memmax Total amount of memory
683
684
685        memperc
686               Percentage of memory in use
687
688
689        mpd_artist
690               Artist in current MPD song must be enabled at compile
691
692
693        mpd_album
694               Album in current MPD song
695
696
697        mpd_bar (height),(width)
698               Bar of mpd's progress
699
700
701        mpd_bitrate
702               Bitrate of current song
703
704
705        mpd_status
706               Playing, stopped, et cetera.
707
708
709        mpd_title
710               Title of current MPD song
711
712
713        mpd_vol
714               MPD's volume
715
716
717        mpd_elapsed
718               Song's elapsed time
719
720
721        mpd_length
722               Song's length
723
724
725        mpd_percent
726               Percent of song's progress
727
728
729        mpd_random
730               Random status (On/Off)
731
732
733        mpd_repeat
734               Repeat status (On/Off)
735
736
737        mpd_track
738               Prints the MPD track field
739
740
741        mpd_name
742               Prints the MPD name field
743
744
745        mpd_file
746               Prints the file name of the current MPD song
747
748
749        new_mails
750               Unread mail count in mail spool.
751
752
753        nodename
754               Hostname
755
756
757        outlinecolor (color)
758               Change outline color
759
760
761        pre_exec shell command
762               Executes a shell command one time before conky displays anything
763               and puts output as text.
764
765
766        processes
767               Total processes (sleeping and running)
768
769
770        running_processes
771               Running processes (not sleeping), requires Linux 2.6
772
773
774        shadecolor (color)
775               Change shading color
776
777
778        stippled_hr (space)
779               Stippled (dashed) horizontal line
780
781
782        swapbar (height),(width)
783               Bar that shows amount of swap in use
784
785
786        swap   Amount of swap in use
787
788
789        swapmax
790               Total amount of swap
791
792
793        swapperc
794               Percentage of swap in use
795
796
797        sysname
798               System name, Linux for example
799
800
801        tcp_portmon port_begin port_end item (index) (ip4 only at present)
802               TCP port monitor for specified local ports. Port numbers must be
803               in the range 1 to 65535. Valid items are:
804
805               count - total number of connections in the range
806
807               rip - remote ip address
808
809               rhost - remote host name
810
811               rport - remote port number
812
813               lip - local ip address
814
815               lhost - local host name
816
817               lservice - local service name from /etc/services
818
819               The connection index provides you with access to each connection
820               in the port monitor. The monitor  will  return  information  for
821               index  values  from 0 to n-1 connections. Values higher than n-1
822               are simply ignored. For the "count" item, the  connection  index
823               must be omitted. It is required for all other items.
824
825               Examples:
826
827               ${tcp_portmon  6881 6999 count} - displays the number of connec-
828               tions in the bittorrent port range
829
830               ${tcp_portmon 22 22 rip 0} - displays the remote host ip of  the
831               first sshd connection
832
833               ${tcp_portmon  22 22 rip 9} - displays the remote host ip of the
834               tenth sshd connection
835
836               ${tcp_portmon 1 1024 rhost 0} - displays the remote host name of
837               the first connection on a privileged port
838
839               ${tcp_portmon 1 1024 rport 4} - displays the remote host port of
840               the fifth connection on a privileged port
841
842               ${tcp_portmon 1 65535 lservice 14} - displays the local  service
843               name of the fifteenth connection in the range of all ports
844
845               Note that port monitor variables which share the same port range
846               actually refer to the same monitor, so many references to a sin-
847               gle port range for different items and different indexes all use
848               the same monitor internally. In other words, the program  avoids
849               creating redundant monitors.
850
851        texeci interval command
852               Runs  a  command at an interval inside a thread and displays the
853               output. Same as $execi, except  the  command  is  run  inside  a
854               thread.  Use this if you have a slow script to keep Conky updat-
855               ing. You should make the interval slightly longer then the  time
856               it  takes  your  script  to  execute. For example, if you have a
857               script that take 5 seconds  to  execute,  you  should  make  the
858               interval at least 6 seconds. See also $execi.
859
860
861        offset (pixels)
862               Move text over by N pixels. See also $voffset.
863
864
865        tail logfile lines (interval)
866               Displays last N lines of supplied text text file. If interval is
867               not supplied, Conky assumes 2x Conky's interval. Max of 30 lines
868               can be displayed, or until the text buffer is filled.
869
870
871        time (format)
872               Local  time, see man strftime to get more information about for-
873               mat
874
875
876        totaldown net
877               Total download, overflows at 4 GB on Linux with 32-bit arch  and
878               there  doesn't  seem  to  be a way to know how many times it has
879               already done that before conky has started.
880
881
882        top type, num
883               This takes arguments in the form:top (name) (number)  Basically,
884               processes  are  ranked  from  highest  to lowest in terms of cpu
885               usage, which is what (num) represents. The  types  are:  "name",
886               "pid",  "cpu",  and  mem".  There  can  be a max of 10 processes
887               listed.
888
889
890        top_mem type, num
891               Same as top, except sorted by mem usage instead of cpu
892
893
894        totalup net
895               Total upload, this one too, may overflow
896
897
898        updates Number of updates
899               for debugging
900
901
902        upspeed net
903               Upload speed in kilobytes
904
905
906        upspeedf net
907               Upload speed in kilobytes with one decimal
908
909
910        upspeedgraph net (height),(width) (gradient colour 1) (gradient  colour
911        2) (scale)
912               Upload speed graph, colours defined in  hex,  minus  the  #.  If
913               scale is non-zero, it becomes the scale for the graph.
914
915
916        uptime Uptime
917
918
919        uptime_short
920               Uptime in a shorter format
921
922
923        seti_prog
924               Seti@home current progress
925
926
927        seti_progbar (height),(width)
928               Seti@home current progress bar
929
930
931        seti_credit
932               Seti@home total user credit
933
934
935        voffset (pixels)
936               Change  vertical  offset by N pixels. Negative values will cause
937               text to overlap. See also $offset.
938
939
940        xmms_bar (height),(width)
941               xmms / bmp / audacious / infopipe: progress bar
942
943
944        xmms_bitrate
945               xmms / bmp / audacious / infopipe: bitrate of current tune
946
947
948        xmms_channels
949               xmms / bmp / audacious / infopipe: number of audio  channels  of
950               current tune
951
952
953        xmms_filename
954               xmms  /  bmp  /  audacious / infopipe: full path and filename of
955               current tune
956
957
958        xmms_frequency
959               xmms / bmp / audacious / infopipe: sampling frequency of current
960               tune
961
962
963        xmms_length
964               xmms  / bmp / audacious / infopipe: total length of current tune
965               as MM:SS
966
967
968        xmms_length_seconds
969               xmms / bmp / audacious / infopipe: total length of current  tune
970               in seconds
971
972
973        xmms_playlist_position
974               xmms  / bmp / audacious / infopipe: playlist position of current
975               tune
976
977
978        xmms_playlist_length
979               xmms / bmp / audacious / infopipe: number of tunes in playlist
980
981
982        xmms_position
983               xmms / bmp / audacious / infopipe:  MM:SS  position  of  current
984               tune
985
986
987        xmms_position_seconds
988               xmms  /  bmp / audacious / infopipe: position of current tune in
989               seconds
990
991
992        xmms_status
993               xmms  /  bmp  /  audacious  /  infopipe:  player  status  (Play-
994               ing/Paused/Stopped/Not running)
995
996
997        xmms_title
998               xmms / bmp / audacious / infopipe: title of current tune
999
1000
1001 EXAMPLES
1002        conky -t '${time %D %H:%m}' -o -u 30
1003               Start Conky in its own window with date and clock as text and 30
1004               sec update interval.
1005
1006        conky -a top_left -x 5 -y 500 -d
1007               Start Conky to background at coordinates (5, 500).
1008
1009 FILES
1010        ~/.conkyrc default configuration file
1011
1012 BUGS
1013        Drawing to root or some other desktop window directly doesn't work with
1014        all window managers. Especially doesn't work well with Gnome and it has
1015        been reported that it doesn't work with KDE  either.  Nautilus  can  be
1016        disabled  from  drawing  to  desktop with program gconf-editor. Uncheck
1017        show_desktop in /apps/nautilus/preferences/.  There  is  -w  switch  in
1018        Conky  to  set  some  specific window id. You might find xwininfo -tree
1019        useful to find the window to draw to. You  can  also  use  -o  argument
1020        which makes Conky to create its own window.
1021
1022 SEE ALSO
1023        http://conky.sourceforge.net [http://conky.sourceforge.net]
1024
1025        http://www.sourceforge.net/projects/conky           [http://www.source-
1026        forge.net/projects/conky]
1027
1028        #conky on irc.freenode.net
1029
1030 AUTHORS
1031        The Conky dev team. What's up now!
1032
1033
1034
1035                                   2006-02-12                          conky(1)