Code

Added options: audible-bell, visible-bell, wrap-around, find-wrap
[ncmpc.git] / src / options.c
index 416727ad3e8b51bfd23621cddcc7ef1545a66078..e958e4b957531a96cfcc2c39161b84d8569fc6b5 100644 (file)
@@ -1,5 +1,7 @@
 /* 
- * (c) 2004 by Kalle Wallin (kaw@linux.se)
+ * $Id$
+ *
+ * (c) 2004 by Kalle Wallin <kaw@linux.se>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,6 +27,7 @@
 #include <popt.h>
 
 #include "config.h"
+#include "ncmpc.h"
 #include "options.h"
 #include "command.h"
 #include "support.h"
@@ -170,9 +173,13 @@ options_init( void )
   else
     options.port = DEFAULT_PORT;
 
-  options.reconnect = 1;
-  options.find_wrap = 1;
-  options.wide_cursor = 1;
+  options.list_format = NULL;
+  options.status_format = NULL;
+
+  options.reconnect = TRUE;
+  options.find_wrap = TRUE;
+  options.wide_cursor = TRUE;
+  options.audible_bell = TRUE;
 
   return &options;
 }