blob: 1427a36abdcc0175acd6a54eb51ae5e31d3a81a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<Root>
<commands>
<cmd name="Change Background"
_label="Change Desktop Background"
_tip="Show a window that lets you set your desktop background's pattern or color"/>
<cmd name="Close" sensitive="0"/>
<cmd name="Add Bookmark" sensitive="0"/>
<cmd name="Empty Trash Conditional"
_label="Empty Trash"
_tip="Delete all items in the trash"/>
<cmd name="New Terminal"
_label="New Terminal"
_tip="Open a new GNOME terminal window"/>
<cmd name="Reset Background"
_label="Reset Desktop Background"
_tip="Remove any custom pattern or color from the desktop background"/>
</commands>
<menu>
<!-- By re-labelling these submenus to names without underscores, we
prevent the user from bringing up the otherwise-invisible menu bar
menus on the desktop from the keyboard. Setting the labels to "" in
code does not work (presumably Bonobo bug), but doing so here does.
-->
<submenu name="File" label=""/>
<submenu name="Edit" label=""/>
<submenu name="View" label=""/>
<submenu name="Go" label=""/>
<submenu name="Bookmarks" label=""/>
<submenu name="Profiler" label=""/>
<submenu name="Help" label=""/>
<submenu name="Preferences" label=""/>
</menu>
<popups>
<popup name="background">
<placeholder name="Before Zoom Items">
<placeholder name="New Items">
<menuitem name="New Terminal" verb="New Terminal"/>
</placeholder>
<placeholder name="Volume Items" delimit="top">
<submenu name="Disks" tearoff="0"
_label="Disks"
_tip="Mount or unmount disks"/>
</placeholder>
</placeholder>
<placeholder name="After Zoom Items">
<placeholder name="Background Items">
<menuitem name="Reset Background" verb="Reset Background"/>
<menuitem name="Change Background" verb="Change Background"/>
</placeholder>
</placeholder>
</popup>
<popup name="selection">
<placeholder name="Empty Trash Holder" delimit="top">
<menuitem name="Empty Trash" verb="Empty Trash Conditional"/>
</placeholder>
<placeholder name="Unmount Volume Holder" delimit="top">
<menuitem name="Empty Trash" verb="Unmount Volume Conditional"/>
</placeholder>
</popup>
</popups>
</Root>
|