mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-02-02 20:18:30 +00:00
Remove deprecated stuff from docs and conky.c (for 1.7.3).
This commit is contained in:
parent
da4b542ae6
commit
ec517ecb26
@ -16,7 +16,7 @@
|
|||||||
<firstname>Brenden</firstname>
|
<firstname>Brenden</firstname>
|
||||||
<surname>Matthews</surname>
|
<surname>Matthews</surname>
|
||||||
</author>
|
</author>
|
||||||
<date>2009-07-20</date>
|
<date>2009-07-28</date>
|
||||||
</refentryinfo>
|
</refentryinfo>
|
||||||
<refmeta>
|
<refmeta>
|
||||||
<refentrytitle>conky</refentrytitle>
|
<refentrytitle>conky</refentrytitle>
|
||||||
|
29
doc/lua.xml
29
doc/lua.xml
@ -20,9 +20,8 @@
|
|||||||
<option>function</option>
|
<option>function</option>
|
||||||
</term>
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>Sets Conky's update interval (in seconds) to
|
||||||
Sets Conky's update interval (in seconds) to 'number'.
|
'number'.</para>
|
||||||
</para>
|
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -39,17 +38,20 @@
|
|||||||
<simplelist>
|
<simplelist>
|
||||||
<member>
|
<member>
|
||||||
<command>drawable</command>
|
<command>drawable</command>
|
||||||
<option>Window's drawable (Xlib
|
<option>Window's drawable (Xlib Drawable),
|
||||||
Drawable), requires Lua extras enabled at compile time.</option>
|
requires Lua extras enabled at compile
|
||||||
|
time.</option>
|
||||||
</member>
|
</member>
|
||||||
<member>
|
<member>
|
||||||
<command>visual</command>
|
<command>visual</command>
|
||||||
<option>Window's visual (Xlib Visual), requires Lua extras enabled at compile time.</option>
|
<option>Window's visual (Xlib Visual), requires
|
||||||
|
Lua extras enabled at compile time.</option>
|
||||||
</member>
|
</member>
|
||||||
<member>
|
<member>
|
||||||
<command>display</command>
|
<command>display</command>
|
||||||
<option>Window's display (Xlib
|
<option>Window's display (Xlib Display),
|
||||||
Display), requires Lua extras enabled at compile time.</option>
|
requires Lua extras enabled at compile
|
||||||
|
time.</option>
|
||||||
</member>
|
</member>
|
||||||
<member>
|
<member>
|
||||||
<command>width</command>
|
<command>width</command>
|
||||||
@ -108,18 +110,17 @@
|
|||||||
</term>
|
</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>This table contains some information about
|
<para>This table contains some information about
|
||||||
Conky's internal data. The following table describes the
|
Conky's internal data. The following table describes
|
||||||
values contained:</para>
|
the values contained:</para>
|
||||||
<simplelist>
|
<simplelist>
|
||||||
<member>
|
<member>
|
||||||
<command>update_interval</command>
|
<command>update_interval</command>
|
||||||
<option>Conky's update interval (in seconds).
|
<option>Conky's update interval (in
|
||||||
</option>
|
seconds).</option>
|
||||||
</member>
|
</member>
|
||||||
<member>
|
<member>
|
||||||
<command>uptime</command>
|
<command>uptime</command>
|
||||||
<option>System uptime, in seconds.
|
<option>System uptime, in seconds.</option>
|
||||||
</option>
|
|
||||||
</member>
|
</member>
|
||||||
</simplelist>
|
</simplelist>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -1264,8 +1264,8 @@
|
|||||||
<option>logfile lines (next_check)</option>
|
<option>logfile lines (next_check)</option>
|
||||||
</term>
|
</term>
|
||||||
<listitem>Displays first N lines of supplied text file. The
|
<listitem>Displays first N lines of supplied text file. The
|
||||||
file is checked every 'next_check' update. If next_check
|
file is checked every 'next_check' update. If next_check is
|
||||||
is not supplied, Conky defaults to 2. Max of 30 lines can be
|
not supplied, Conky defaults to 2. Max of 30 lines can be
|
||||||
displayed, or until the text buffer is filled.
|
displayed, or until the text buffer is filled.
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
@ -1797,9 +1797,10 @@
|
|||||||
</term>
|
</term>
|
||||||
<listitem>Executes a Lua function with given parameters,
|
<listitem>Executes a Lua function with given parameters,
|
||||||
then prints the returned string. See also 'lua_load' on how
|
then prints the returned string. See also 'lua_load' on how
|
||||||
to load scripts. Conky puts 'conky_' in front of function_name
|
to load scripts. Conky puts 'conky_' in front of
|
||||||
to prevent accidental calls to the wrong function unless you
|
function_name to prevent accidental calls to the wrong
|
||||||
put you place 'conky_' in front of it yourself.
|
function unless you put you place 'conky_' in front of it
|
||||||
|
yourself.
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -1814,8 +1815,8 @@
|
|||||||
draws a bar. Expects result value to be an integer between
|
draws a bar. Expects result value to be an integer between
|
||||||
0 and 100. See also 'lua_load' on how to load scripts.
|
0 and 100. See also 'lua_load' on how to load scripts.
|
||||||
Conky puts 'conky_' in front of function_name to prevent
|
Conky puts 'conky_' in front of function_name to prevent
|
||||||
accidental calls to the wrong function unless you
|
accidental calls to the wrong function unless you put you
|
||||||
put you place 'conky_' in front of it yourself.
|
place 'conky_' in front of it yourself.
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -1829,8 +1830,8 @@
|
|||||||
<listitem>Executes a Lua function with given parameters and
|
<listitem>Executes a Lua function with given parameters and
|
||||||
draws a gauge. Expects result value to be an integer
|
draws a gauge. Expects result value to be an integer
|
||||||
between 0 and 100. See also 'lua_load' on how to load
|
between 0 and 100. See also 'lua_load' on how to load
|
||||||
scripts. Conky puts 'conky_' in front of function_name
|
scripts. Conky puts 'conky_' in front of function_name to
|
||||||
to prevent accidental calls to the wrong function unless you
|
prevent accidental calls to the wrong function unless you
|
||||||
put you place 'conky_' in front of it yourself.
|
put you place 'conky_' in front of it yourself.
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
@ -1848,8 +1849,8 @@
|
|||||||
load scripts. Takes the switch '-t' to use a temperature
|
load scripts. Takes the switch '-t' to use a temperature
|
||||||
gradient, which makes the gradient values change depending
|
gradient, which makes the gradient values change depending
|
||||||
on the amplitude of a particular graph value (try it and
|
on the amplitude of a particular graph value (try it and
|
||||||
see). Conky puts 'conky_' in front of function_name
|
see). Conky puts 'conky_' in front of function_name to
|
||||||
to prevent accidental calls to the wrong function unless you
|
prevent accidental calls to the wrong function unless you
|
||||||
put you place 'conky_' in front of it yourself.
|
put you place 'conky_' in front of it yourself.
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
@ -1863,20 +1864,10 @@
|
|||||||
<listitem>Executes a Lua function with given parameters as
|
<listitem>Executes a Lua function with given parameters as
|
||||||
per $lua, then parses and prints the result value as per
|
per $lua, then parses and prints the result value as per
|
||||||
the syntax for Conky's TEXT section. See also 'lua_load' on
|
the syntax for Conky's TEXT section. See also 'lua_load' on
|
||||||
how to load scripts. Conky puts 'conky_' in front of function_name
|
how to load scripts. Conky puts 'conky_' in front of
|
||||||
to prevent accidental calls to the wrong function unless you
|
function_name to prevent accidental calls to the wrong
|
||||||
put you place 'conky_' in front of it yourself.
|
function unless you put you place 'conky_' in front of it
|
||||||
<para /></listitem>
|
yourself.
|
||||||
</varlistentry>
|
|
||||||
<varlistentry>
|
|
||||||
<term>
|
|
||||||
<command>
|
|
||||||
<option>lua_read_parse</option>
|
|
||||||
</command>
|
|
||||||
<option />
|
|
||||||
</term>
|
|
||||||
<listitem>This function is deprecated. Please use the
|
|
||||||
conky_parse() Lua function instead.
|
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -2808,8 +2799,8 @@
|
|||||||
<option>logfile lines (next_check)</option>
|
<option>logfile lines (next_check)</option>
|
||||||
</term>
|
</term>
|
||||||
<listitem>Displays last N lines of supplied text file. The
|
<listitem>Displays last N lines of supplied text file. The
|
||||||
file is checked every 'next_check' update. If next_check
|
file is checked every 'next_check' update. If next_check is
|
||||||
is not supplied, Conky defaults to 2. Max of 30 lines can be
|
not supplied, Conky defaults to 2. Max of 30 lines can be
|
||||||
displayed, or until the text buffer is filled.
|
displayed, or until the text buffer is filled.
|
||||||
<para /></listitem>
|
<para /></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
syntax "conky" "(\.*conkyrc.*$|conky.conf)"
|
syntax "conky" "(\.*conkyrc.*$|conky.conf)"
|
||||||
|
|
||||||
## Configuration items
|
## Configuration items
|
||||||
color green "\<(alias|alignment|append_file|background|border_inner_margin|border_margin|border_outer_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_size|default_color|default_gauge_size|default_graph_size|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|extra_newline|font|format_human_readable|gap_x|gap_y|if_up_strictness|imap|imlib_cache_flush_interval|imlib_cache_size|lua_draw_hook_post|lua_draw_hook_pre|lua_load|mail_spool|max_port_monitor_connections|max_specials|max_user_text|maximum_width|minimum_size|mpd_host|mpd_password|mpd_port|music_player_interval|net_avg_samples|no_buffers|out_to_console|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|top_cpu_separate|top_name_width|total_run_times|update_interval|uppercase|use_spacer|use_xft|xftalpha|xftfont)\>"
|
color green "\<(alias|alignment|append_file|background|border_inner_margin|border_outer_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_size|default_color|default_gauge_size|default_graph_size|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|extra_newline|font|format_human_readable|gap_x|gap_y|if_up_strictness|imap|imlib_cache_flush_interval|imlib_cache_size|lua_draw_hook_post|lua_draw_hook_pre|lua_load|mail_spool|max_port_monitor_connections|max_specials|max_user_text|maximum_width|minimum_size|mpd_host|mpd_password|mpd_port|music_player_interval|net_avg_samples|no_buffers|out_to_console|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|top_cpu_separate|top_name_width|total_run_times|update_interval|update_interval_on_battery|uppercase|use_spacer|use_xft|xftalpha|xftfont)\>"
|
||||||
|
|
||||||
## 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)\>"
|
||||||
|
@ -12,7 +12,7 @@ endif
|
|||||||
|
|
||||||
syn region ConkyrcComment start=/^\s*#/ end=/$/
|
syn region ConkyrcComment start=/^\s*#/ end=/$/
|
||||||
|
|
||||||
syn keyword ConkyrcSetting alias alignment append_file background border_inner_margin border_margin border_outer_margin border_width color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 colorN cpu_avg_samples default_bar_size default_color default_gauge_size default_graph_size default_outline_color default_shade_color diskio_avg_samples display double_buffer draw_borders draw_graph_borders draw_outline draw_shades extra_newline font format_human_readable gap_x gap_y if_up_strictness imap imlib_cache_flush_interval imlib_cache_size lua_draw_hook_post lua_draw_hook_pre lua_load mail_spool max_port_monitor_connections max_specials max_user_text maximum_width minimum_size mpd_host mpd_password mpd_port music_player_interval net_avg_samples no_buffers out_to_console out_to_stderr out_to_x override_utf8_locale overwrite_file own_window own_window_class own_window_colour own_window_hints own_window_title own_window_transparent own_window_type pad_percents pop3 sensor_device short_units show_graph_range show_graph_scale stippled_borders temperature_unit template template0 template1 template2 template3 template4 template5 template6 template7 template8 template9 text text_buffer_size top_cpu_separate top_name_width total_run_times update_interval uppercase use_spacer use_xft xftalpha xftfont
|
syn keyword ConkyrcSetting alias alignment append_file background border_inner_margin border_outer_margin border_width color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 colorN cpu_avg_samples default_bar_size default_color default_gauge_size default_graph_size default_outline_color default_shade_color diskio_avg_samples display double_buffer draw_borders draw_graph_borders draw_outline draw_shades extra_newline font format_human_readable gap_x gap_y if_up_strictness imap imlib_cache_flush_interval imlib_cache_size lua_draw_hook_post lua_draw_hook_pre lua_load mail_spool max_port_monitor_connections max_specials max_user_text maximum_width minimum_size mpd_host mpd_password mpd_port music_player_interval net_avg_samples no_buffers out_to_console out_to_stderr out_to_x override_utf8_locale overwrite_file own_window own_window_class own_window_colour own_window_hints own_window_title own_window_transparent own_window_type pad_percents pop3 sensor_device short_units show_graph_range show_graph_scale stippled_borders temperature_unit template template0 template1 template2 template3 template4 template5 template6 template7 template8 template9 text text_buffer_size top_cpu_separate top_name_width total_run_times update_interval update_interval_on_battery uppercase use_spacer use_xft xftalpha xftfont
|
||||||
|
|
||||||
syn keyword ConkyrcConstant
|
syn keyword ConkyrcConstant
|
||||||
\ above
|
\ above
|
||||||
|
@ -8175,15 +8175,6 @@ static void load_config_file(const char *f)
|
|||||||
CONF("show_graph_range") {
|
CONF("show_graph_range") {
|
||||||
show_graph_range = string_to_bool(value);
|
show_graph_range = string_to_bool(value);
|
||||||
}
|
}
|
||||||
CONF("border_margin") {
|
|
||||||
ERR("border_margin is deprecated, please use window.border_inner_margin instead");
|
|
||||||
if (value) {
|
|
||||||
window.border_inner_margin = strtol(value, 0, 0);
|
|
||||||
if (window.border_inner_margin < 0) window.border_inner_margin = 0;
|
|
||||||
} else {
|
|
||||||
CONF_ERR;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
CONF("border_inner_margin") {
|
CONF("border_inner_margin") {
|
||||||
if (value) {
|
if (value) {
|
||||||
window.border_inner_margin = strtol(value, 0, 0);
|
window.border_inner_margin = strtol(value, 0, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user