Code

The background color can now be assigned to 'none' (use the current color).
authorKalle Wallin <kaw@linux.se>
Mon, 3 May 2004 11:44:22 +0000 (11:44 +0000)
committerKalle Wallin <kaw@linux.se>
Mon, 3 May 2004 11:44:22 +0000 (11:44 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@898 09075e82-0dd4-0310-85a5-a0d7c8717e4f

conf.c
doc/ncmpc.1
screen.c

diff --git a/conf.c b/conf.c
index 0c0448ed4e9f9200774796ae24332607b4dd371c..1205af5ec6652b28284de06aa5dad07a6331f165 100644 (file)
--- a/conf.c
+++ b/conf.c
@@ -97,8 +97,10 @@ str2color(char *str)
     return COLOR_CYAN;
   else if( !strcasecmp(str,"white") )
     return COLOR_WHITE;
+  else if( !strcasecmp(str,"default") || !strcasecmp(str,"none") )
+    return -1;
   fprintf(stderr,"Warning: unknown color %s\n", str);
-  return -1;
+  return -2;
 }
 
 static int
@@ -330,7 +332,7 @@ read_rc_file(char *filename, options_t *options)
              /* background color */
              else if( !strcasecmp(CONF_COLOR_BACKGROUND, name) )
                {
-                 if( (color=str2color(value)) >= 0 )
+                 if( (color=str2color(value)) >= -1 )
                    options->bg_color = color;
                }
              /* color - top (title) window */
index ca89ded3803b5fe9814a3f6a318747e6c3fcc0f8..25b6951ca974f88b9a8026475d9a0e19170161c0 100644 (file)
@@ -1,4 +1,4 @@
-.TH "ncmpc" "1" "April 2004" "" ""
+.TH "ncmpc" "1" "May 2004" "" ""
 .SH "NAME"
 ncmpc \- curses Music Player Daemon (MPD) client.
 .SH "SYNOPSIS"
@@ -66,6 +66,9 @@ Make the cursor as wide as the screen.
 .B enable_colors = yes|no
 Enable/disable colors.
 .TP 
+.B background_color = color|none
+Set the background color. If the background color is assigned to the keyword \fBnone\fR, ncmpc will not change the background color.
+.TP 
 .B title_color = color
 Set the text color for the title row (first row).
 .TP 
@@ -92,9 +95,7 @@ ncmpc is running. To edit key bindings use the key editor in ncmpc (press 'K').
 Report bugs on http://www.musicpd.org/mantis/
 .SH "NOTE"
 Since MPD uses UTF\-8, ncmpc needs to convert characters to the 
-charset used by the local system. If you get character conversion errors when your running ncmpc you probably need to set up your locale. This is done by setting any of the LC_CTYPE, LANG or LC_ALL enviroment variables (LC_CTYPE only affects character handling). For example if you want UK settings and use bash you should add the following line to your /etc/profile:
-
-  export LC_CTYPE=en_UK
+charset used by the local system. If you get character conversion errors when your running ncmpc you probably need to set up your locale. This is done by setting any of the LC_CTYPE, LANG or LC_ALL enviroment variables (LC_CTYPE only affects character handling).
 
 .SH "SE ALSO"
 mpc(1), mpd(1), locale(5), locale(7)
index 87909665037b18c868eeb1da2ab7246a4b7af2b3..67cbf6bc45eb47a095e962e17fcf43be1b2033e7 100644 (file)
--- a/screen.c
+++ b/screen.c
@@ -422,6 +422,7 @@ screen_init(void)
   if( has_colors() )
     {
       start_color();
+      use_default_colors();
       if( options.enable_colors )
        {
          init_pair(1, options.title_color,    options.bg_color);
@@ -431,8 +432,6 @@ screen_init(void)
          init_pair(5, options.status_color,   options.bg_color);
          init_pair(6, options.alert_color,    options.bg_color);
        }
-      else
-       use_default_colors();
     }
   else if( options.enable_colors )
     {