mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-25 20:11:11 +00:00
* Added --quiet patch (thanks sceptik)
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1123 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
7ff7c1083c
commit
8f8d5c1c8c
3
AUTHORS
3
AUTHORS
@ -271,6 +271,9 @@ Ryan Twitchell <tryan2 at rochester dot rr dot com>
|
|||||||
Mikko Sysikaski <sisu at users dot sourceforge dot net>
|
Mikko Sysikaski <sisu at users dot sourceforge dot net>
|
||||||
prss.c and prss.h
|
prss.c and prss.h
|
||||||
|
|
||||||
|
Sceptik <sceptik at users dot sourceforge dot net>
|
||||||
|
--quiet patch
|
||||||
|
|
||||||
Stepan Zastupov <redchrom at gmail dot com>
|
Stepan Zastupov <redchrom at gmail dot com>
|
||||||
WiFi signal level detection support on FreeBSD
|
WiFi signal level detection support on FreeBSD
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
2008-06-03
|
2008-06-03
|
||||||
* Added NVIDIA Graficcard support patch (thanks meissna)
|
* Added NVIDIA Graficcard support patch (thanks meissna)
|
||||||
|
* Added --quiet patch (thanks sceptik)
|
||||||
|
|
||||||
2008-05-30
|
2008-05-30
|
||||||
* Simplified docs for color0-9 config settings and variables.
|
* Simplified docs for color0-9 config settings and variables.
|
||||||
|
4
README
4
README
@ -90,6 +90,10 @@ OPTIONS
|
|||||||
Prints version and exits
|
Prints version and exits
|
||||||
|
|
||||||
|
|
||||||
|
-q | --quiet
|
||||||
|
Run Conky in 'quiet mode' (ie. no output)
|
||||||
|
|
||||||
|
|
||||||
-a | --alignment=ALIGNMENT
|
-a | --alignment=ALIGNMENT
|
||||||
Text alignment on screen, {top,bottom,middle}_{left,right,mid-
|
Text alignment on screen, {top,bottom,middle}_{left,right,mid-
|
||||||
dle} or none
|
dle} or none
|
||||||
|
@ -6,6 +6,13 @@
|
|||||||
<para></para></listitem>
|
<para></para></listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><command><option>-q | --quiet</option></command></term>
|
||||||
|
<listitem>
|
||||||
|
Run Conky in 'quiet mode' (ie. no output)
|
||||||
|
<para></para></listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><command><option>-a | --alignment=</option></command><option>ALIGNMENT</option></term>
|
<term><command><option>-a | --alignment=</option></command><option>ALIGNMENT</option></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -82,6 +82,10 @@ Command line options override configurations defined in configuration file.
|
|||||||
\fB\*(T<\fB\-v | \-V | \-\-version\fR\*(T>\fR
|
\fB\*(T<\fB\-v | \-V | \-\-version\fR\*(T>\fR
|
||||||
Prints version and exits
|
Prints version and exits
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fB\*(T<\fB\-q | \-\-quiet\fR\*(T>\fR
|
||||||
|
Run Conky in 'quiet mode' (ie. no output)
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fB\*(T<\fB\-a | \-\-alignment=\fR\*(T>\fR\*(T<\fBALIGNMENT\fR\*(T>
|
\fB\*(T<\fB\-a | \-\-alignment=\fR\*(T>\fR\*(T<\fBALIGNMENT\fR\*(T>
|
||||||
Text alignment on screen, {top,bottom,middle}_{left,right,middle} or none
|
Text alignment on screen, {top,bottom,middle}_{left,right,middle} or none
|
||||||
|
11
src/conky.c
11
src/conky.c
@ -8591,7 +8591,7 @@ static void load_config_file(const char *f)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* : means that character before that takes an argument */
|
/* : means that character before that takes an argument */
|
||||||
static const char *getopt_string = "vVdt:u:i:hc:"
|
static const char *getopt_string = "vVqdt:u:i:hc:"
|
||||||
#ifdef X11
|
#ifdef X11
|
||||||
"x:y:w:a:f:"
|
"x:y:w:a:f:"
|
||||||
#ifdef OWN_WINDOW
|
#ifdef OWN_WINDOW
|
||||||
@ -8679,13 +8679,16 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
current_config = strndup(optarg, max_user_text);
|
current_config = strndup(optarg, max_user_text);
|
||||||
break;
|
break;
|
||||||
|
case 'q':
|
||||||
|
freopen("/dev/null", "w", stderr);
|
||||||
|
break;
|
||||||
case 'h':
|
case 'h':
|
||||||
printf("Usage: %s [OPTION]...\n"
|
printf("Usage: %s [OPTION]...\n"
|
||||||
"Conky is a system monitor that renders text on desktop or to own transparent\n"
|
"Conky is a system monitor that renders text on desktop or to own transparent\n"
|
||||||
"window. Command line options will override configurations defined in config\n"
|
"window. Command line options will override configurations defined in config\n"
|
||||||
"file.\n"
|
"file.\n"
|
||||||
" -v, --version version\n"
|
" -v, --version version\n"
|
||||||
|
" -q, --quiet quiet mode\n"
|
||||||
" -c, --config=FILE config file to load\n"
|
" -c, --config=FILE config file to load\n"
|
||||||
" -d, --daemonize daemonize, fork to background\n"
|
" -d, --daemonize daemonize, fork to background\n"
|
||||||
" -h, --help help\n"
|
" -h, --help help\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user