diff options
author | Kalle Wallin <kaw@linux.se> | 2004-06-06 21:03:03 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-06-06 21:03:03 +0000 |
commit | 77c69999a63e6b999814cb39c35bb4d30646c145 (patch) | |
tree | d939ef3500210ed88e81e0a68104703e2dc049ef /src/command.c | |
parent | c16d1982e4d05edc07c60ed5935dbd7456a5f1c3 (diff) | |
download | mpd-77c69999a63e6b999814cb39c35bb4d30646c145.tar.gz mpd-77c69999a63e6b999814cb39c35bb4d30646c145.tar.xz mpd-77c69999a63e6b999814cb39c35bb4d30646c145.zip |
Added an optional clock screen :)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1360 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c index 78199f252..294f2318b 100644 --- a/src/command.c +++ b/src/command.c @@ -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 @@ -147,6 +149,10 @@ static command_definition_t cmds[] = N_("Browse screen") }, { {'u', 0, 0 }, CMD_SCREEN_UPDATE, "update", N_("Update screen") }, +#ifdef ENABLE_CLOCK_SCREEN + { {'4', F4, 0 }, CMD_SCREEN_CLOCK, "screen-clock", + N_("Clock screen") }, +#endif #ifdef ENABLE_KEYDEF_SCREEN { {'K', 0, 0 }, CMD_SCREEN_KEYDEF, "screen-keyedit", N_("Key configuration screen") }, |