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.h | |
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.h')
-rw-r--r-- | src/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h index 671107a76..c48d1b390 100644 --- a/src/options.h +++ b/src/options.h @@ -69,6 +69,7 @@ typedef struct { bool scroll; bool visible_bitrate; bool welcome_screen_list; + bool display_time; #endif } options_t; |