summaryrefslogtreecommitdiff
path: root/manual/advanced_topics/main.tex
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2012-02-09 21:21:40 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2012-02-25 12:40:44 +0100
commit13412f67caebe2dc4b86d7f367eb1dce8609bde1 (patch)
tree9aeba92e3092dd17878ce8caefff35c3eba99d98 /manual/advanced_topics/main.tex
parent8125877f6091066d847cf4bb4b8dcf0925830875 (diff)
downloadrockbox-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/advanced_topics/main.tex')
-rw-r--r--manual/advanced_topics/main.tex23
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
8It is possible to customise the main menu, i.e. to reorder or to hide some
9of its items. To accomplish this, the file \fname{/.rockbox/config.cfg} must
10be edited (presumably on the computer while the \dap{} is connected to it
11via USB). There, the line starting with \config{root\_menu\_order:} must
12be edited (or created if it is not present yet).
13
14The line should look like \config{root\_menu\_order:items}, where ``items''
15is a comma separated list (no spaces around the commas!) of the following
16words: \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}.
20Each of the words, if it occurs in the list, activates the appropriate item
21in the main menu. The order of the items is given by the order of the words
22in the list. The items whose words do not occur in the list will be hidden,
23with one exception: the menu item ``Settings'' will be shown even if its word
24is not in the list (it is added as the last item then).
25
26Only 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