diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2012-02-09 21:21:40 +1100 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2012-02-25 12:40:44 +0100 |
commit | 13412f67caebe2dc4b86d7f367eb1dce8609bde1 (patch) | |
tree | 9aeba92e3092dd17878ce8caefff35c3eba99d98 /manual | |
parent | 8125877f6091066d847cf4bb4b8dcf0925830875 (diff) | |
download | rockbox-13412f67caebe2dc4b86d7f367eb1dce8609bde1.tar.gz rockbox-13412f67caebe2dc4b86d7f367eb1dce8609bde1.zip |
main menu: Add the ability to hide and reorder the main menu items.
To change the shown menu items add the line "root_menu_order:<items>" into your config.cfg
<items> can be any of:
bookmarks, files, database, wps, settings, recording, radio, playlists, plugins, system_menu, shortcuts
Manual entry by Alexander Levin
Change-Id: Ie7f4bfb0f795184de094d05fc341a6cedd1c0cde
Reviewed-on: http://gerrit.rockbox.org/104
Reviewed-by: Jonathan Gordon <rockbox@jdgordon.info>
Diffstat (limited to 'manual')
-rw-r--r-- | manual/advanced_topics/main.tex | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/manual/advanced_topics/main.tex b/manual/advanced_topics/main.tex index 93d1935785..196053759b 100644 --- a/manual/advanced_topics/main.tex +++ b/manual/advanced_topics/main.tex | |||
@@ -2,6 +2,29 @@ | |||
2 | \chapter{Advanced Topics} | 2 | \chapter{Advanced Topics} |
3 | 3 | ||
4 | \section{\label{ref:CustomisingUI}Customising the User Interface} | 4 | \section{\label{ref:CustomisingUI}Customising the User Interface} |
5 | |||
6 | \subsection{\label{ref:CustomisingTheMainMenu}Customising The Main Menu} | ||
7 | |||
8 | It is possible to customise the main menu, i.e. to reorder or to hide some | ||
9 | of its items. To accomplish this, the file \fname{/.rockbox/config.cfg} must | ||
10 | be edited (presumably on the computer while the \dap{} is connected to it | ||
11 | via USB). There, the line starting with \config{root\_menu\_order:} must | ||
12 | be edited (or created if it is not present yet). | ||
13 | |||
14 | The line should look like \config{root\_menu\_order:items}, where ``items'' | ||
15 | is a comma separated list (no spaces around the commas!) of the following | ||
16 | words: \config{bookmarks}, \config{files}, \opt{database}{\config{database}, }% | ||
17 | \config{wps}, \config{settings}, \opt{recording}{\config{recording}, }% | ||
18 | \opt{radio}{\config{radio}, }\config{playlists}, \config{plugins}, | ||
19 | \config{system\_menu}, \opt{PLAYER_PAD}{\config{shutdown}, }\config{shortcuts}. | ||
20 | Each of the words, if it occurs in the list, activates the appropriate item | ||
21 | in the main menu. The order of the items is given by the order of the words | ||
22 | in the list. The items whose words do not occur in the list will be hidden, | ||
23 | with one exception: the menu item ``Settings'' will be shown even if its word | ||
24 | is not in the list (it is added as the last item then). | ||
25 | |||
26 | Only the main menu can be customised this way, submenus can not. | ||
27 | |||
5 | \opt{lcd_bitmap}{ | 28 | \opt{lcd_bitmap}{ |
6 | \subsection{\label{ref:GettingExtras}Getting Extras} | 29 | \subsection{\label{ref:GettingExtras}Getting Extras} |
7 | 30 | ||