1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

out_to_x can now be turned off

This commit is contained in:
Nikolas Garofil 2009-02-14 13:03:11 +01:00
parent 227e5a3d38
commit 1085d2b27e
7 changed files with 666 additions and 508 deletions

View File

@ -1,8 +1,11 @@
2009-02-15
* Added out_to_x
2009-02-12 2009-02-12
* Added overwrite_file and append_file * Added overwrite_file and append_file
2009-02-10 2009-02-10
* Added output_to_stderr * Added out_to_stderr
2009-02-08 2009-02-08
* Refactor top code, add top_time to sort by process cpu time (thanks * Refactor top code, add top_time to sort by process cpu time (thanks

View File

@ -323,6 +323,16 @@
<para></para></listitem> <para></para></listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term><command><option>out_to_x</option></command>
</term>
<listitem>
When set to no, there will be no output in X (useful when you also use things like out_to_console).
If you set it to no, make sure that it's placed before all other X-related setting (take the first
line of your configfile to be sure). Default value is yes
<para></para></listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term><command><option>overwrite_file</option></command> <term><command><option>overwrite_file</option></command>
</term> </term>

View File

@ -326,6 +326,12 @@ Print text to stdout.
\fB\*(T<\fBout_to_stderr\fR\*(T>\fR \fB\*(T<\fBout_to_stderr\fR\*(T>\fR
Print text to stderr. Print text to stderr.
.TP
\fB\*(T<\fBout_to_x\fR\*(T>\fR
When set to no, there will be no output in X (useful when you also use things like out_to_console).
If you set it to no, make sure that it's placed before all other X-related setting (take the first
line of your configfile to be sure). Default value is yes
.TP .TP
\fB\*(T<\fBappend_file\fR\*(T>\fR \fB\*(T<\fBappend_file\fR\*(T>\fR
Append the file given as argument. Append the file given as argument.

View File

@ -4,6 +4,9 @@
# of keeping the documentation more maintainable. # of keeping the documentation more maintainable.
# Check http://conky.sf.net for an up-to-date-list. # Check http://conky.sf.net for an up-to-date-list.
#set to no if you don't want to see anything in X
out_to_x yes
# set to yes if you want Conky to be forked in the background # set to yes if you want Conky to be forked in the background
background no background no

View File

@ -5,7 +5,7 @@
syntax "conky" "(\.*conkyrc.*$|conky.conf)" syntax "conky" "(\.*conkyrc.*$|conky.conf)"
## Configuration items ## Configuration items
color green "\<(alignment|background|show_graph_range|show_graph_scale|border_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|default_color|default_shade_color|default_shadecolor|default_outline_color|default_outlinecolor|imap|pop3|mpd_host|mpd_port|mpd_password|music_player_interval|sensor_device|cpu_avg_samples|net_avg_samples|double_buffer|override_utf8_locale|draw_borders|draw_graph_borders|draw_shades|draw_outline|out_to_console|out_to_stderr|overwrite_file|append_file|use_spacer|use_xft|font|xftalpha|xftfont|use_xft|gap_x|gap_y|mail_spool|minimum_size|maximum_width|no_buffers|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|top_cpu_separate|short_units|pad_percents|own_window|own_window_class|own_window_title|own_window_transparent|own_window_colour|own_window_hints|own_window_type|stippled_borders|temp1|temp2|update_interval|total_run_times|uppercase|max_specials|max_user_text|text_buffer_size|max_port_monitor_connections)\>" color green "\<(alignment|background|show_graph_range|show_graph_scale|border_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|default_color|default_shade_color|default_shadecolor|default_outline_color|default_outlinecolor|imap|pop3|mpd_host|mpd_port|mpd_password|music_player_interval|sensor_device|cpu_avg_samples|net_avg_samples|double_buffer|override_utf8_locale|draw_borders|draw_graph_borders|draw_shades|draw_outline|out_to_console|out_to_stderr|out_to_x|overwrite_file|append_file|use_spacer|use_xft|font|xftalpha|xftfont|use_xft|gap_x|gap_y|mail_spool|minimum_size|maximum_width|no_buffers|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|top_cpu_separate|short_units|pad_percents|own_window|own_window_class|own_window_title|own_window_transparent|own_window_colour|own_window_hints|own_window_type|stippled_borders|temp1|temp2|update_interval|total_run_times|uppercase|max_specials|max_user_text|text_buffer_size|max_port_monitor_connections)\>"
## Configuration item constants ## Configuration item constants
color yellow "\<(above|below|bottom_left|bottom_right|bottom_middle|desktop|dock|no|none|normal|override|skip_pager|skip_taskbar|sticky|top_left|top_right|top_middle|middle_left|middle_right|undecorated|yes)\>" color yellow "\<(above|below|bottom_left|bottom_right|bottom_middle|desktop|dock|no|none|normal|override|skip_pager|skip_taskbar|sticky|top_left|top_right|top_middle|middle_left|middle_right|undecorated|yes)\>"

View File

@ -51,6 +51,7 @@ syn keyword ConkyrcSetting
\ draw_outline \ draw_outline
\ out_to_console \ out_to_console
\ out_to_stderr \ out_to_stderr
\ out_to_x
\ overwrite_file \ overwrite_file
\ append_file \ append_file
\ use_spacer \ use_spacer

File diff suppressed because it is too large Load Diff