diff options
author | Paul Collins <paul@burly.ondioline.org> | 2009-01-01 22:54:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-01 22:54:04 +0100 |
commit | 3f0e5e147f89f77061739781889571d24da8b7d8 (patch) | |
tree | 521b51c9fcd9d4f8b44d716ef2584fa36287fe44 /src/options.c | |
parent | e67ad30e9bea8ce099b4a6311cf2b20ce6d86263 (diff) | |
download | mpd-3f0e5e147f89f77061739781889571d24da8b7d8.tar.gz mpd-3f0e5e147f89f77061739781889571d24da8b7d8.tar.xz mpd-3f0e5e147f89f77061739781889571d24da8b7d8.zip |
added option to disable the status line clock display
I already have a clock, and I don't need ncmpc showing me another one.
This patch adds command line options and a config file item to allow the
user to flexibly enable or disable the clock.
[mk: patch from http://bugs.debian.org/510392; removed command line
options]
Diffstat (limited to 'src/options.c')
-rw-r--r-- | src/options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c index 5bb5fbadd..3f784d11c 100644 --- a/src/options.c +++ b/src/options.c @@ -61,6 +61,7 @@ options_t options = { #ifndef NCMPC_MINI .scroll = DEFAULT_SCROLL, .welcome_screen_list = true, + .display_time = true, #endif }; |