Xdg-menu: Difference between revisions

From ArchWiki
(添加中文)
m (→‎See also: - expand link)
 
(21 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Lowercase title}}
[[Category:Freedesktop.org]]
[[Category:Freedesktop.org]]
[[es:Xdg-menu]]
[[ja:Xdg-menu]]
[[ja:Xdg-menu]]
[[ru:Xdg-menu]]
[[ru:Xdg-menu]]
[[zh-hans:Xdg-menu]]
[[zh-hans:Xdg-menu]]
'''xdg-menu''' is a tool that generates [http://specifications.freedesktop.org/menu-spec/menu-spec-latest.html XDG Desktop Menus] for the following [[window manager]]s:
''xdg-menu'' is a tool that generates [https://specifications.freedesktop.org/menu-spec/menu-spec-latest.html XDG Desktop Menus] for the following [[window manager]]s:


* [[awesome]]
* [[awesome]]
Line 10: Line 12:
* [[FVWM2]]
* [[FVWM2]]
* [[IceWM]]
* [[IceWM]]
* [[ion3]]
* [[Openbox]]
* [[Openbox]]
* [[twm]]
* [[twm]]
* [[Window Maker]]
* [[Window Maker]]


KDE, Gnome, Xfce, Enlightenment are already XDG compatible.
[[KDE]], [[GNOME]], [[Xfce]] and [[Enlightenment]] are already XDG compatible.


== Installation ==
== Installation ==


[[Install]] the {{pkg|archlinux-xdg-menu}} package.
[[Install]] the {{Pkg|archlinux-xdg-menu}} package.


== Menu hierarchy ==
== Menu hierarchy ==
* Applications
* Applications
** Accessibility
** Accessibility
Line 38: Line 40:
== Configuration ==
== Configuration ==


Xdg_menu relies on three sets of information to generate menus: a root menu or in other words an XML menu template generally passed on the command line, information cached when it was last run, and a series of configuration files.  
xdg_menu relies on three sets of information to generate menus: a root menu or in other words an XML menu template generally passed on the command line, information cached when it was last run, and a series of configuration files.  


* You can find some XML menu templates in {{ic|/etc/xdg/menus}}.
* You can find some XML menu templates in {{ic|/etc/xdg/menus}}.
* If altering the code in xdg_menu to change layout, make sure you delete everything in {{ic|~/.xdg_menu_cache}} or you will spend hours trying to figure out why your changes to the perl script don't take.
* If altering the code in xdg_menu to change layout, make sure you delete everything in {{ic|~/.xdg_menu_cache}} or you will spend hours trying to figure out why your changes to the perl script do not take.
* You can find individual application configurations in {{ic|/usr/share/applications}}
* You can find individual application configurations in {{ic|/usr/share/applications}}.


Other configuration file directories can be found under {{ic|/usr/share}}. In most cases you will not need to touch these. However if you want to change how your menu is layed out you can alter the menu template for minor changes. Major changes require tweaking the actual xdg_menu perl script. If you find that applications do not appear or that they are called strange things, then you will need to look at the .desktop file in {{ic|/usr/share/applications}}. Check the [https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html desktop entry specification].
Other configuration file directories can be found under {{ic|/usr/share}}. In most cases you will not need to touch these. However if you want to change how your menu is layed out you can alter the menu template for minor changes. Major changes require tweaking the actual xdg_menu perl script. If you find that applications do not appear or that they are called strange things, then you will need to look at the .desktop file in {{ic|/usr/share/applications}}. Check the [https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html desktop entry specification].
Line 66: Line 68:
=== xdg_menu ===
=== xdg_menu ===


<pre>
{{bc|
xdg_menu [--format <format>] [--desktop <desktop>]  
xdg_menu [--format <format>] [--desktop <desktop>]  
         [--charset <charset>] [--language <language>]   
         [--charset <charset>] [--language <language>]   
Line 99: Line 101:
 
 
help - print this text
help - print this text
</pre>
}}


=== update-menus ===
=== update-menus ===


<b>update-menus</B> updates WMs menus from XDG stuff and can do it automaticaly using config.  
''update-menus'' updates WM's menus from XDG data and can be configured to do it automaticaly.


This is a script wrapper around xdg_menu that relies on {{ic|/etc/update-menus.conf}}
This is a script wrapper around xdg_menu that relies on {{ic|/etc/update-menus.conf}}


You need to install package {{Pkg|archlinux-xdg-menu}} (xdg_menu)
To use it, you need to install the {{Pkg|archlinux-xdg-menu}} package (xdg_menu)


{{ic|/etc/update-menus.conf}} selects from a list of window managers for which the menu should be generated. Comments with # are allowed.
In {{ic|/etc/update-menus.conf}}, you have to select from a list of window managers for which the menu should be generated. Comments with # are allowed.


All generated menus placed in {{ic|/var/cache/xdg-menu/}}. See wm-specific Examples section of this page to get more information.
All generated menus are placed in {{ic|/var/cache/xdg-menu/}}. See wm-specific [[#Examples]] section of this page to get more information.


== Examples ==
== Examples ==
Line 118: Line 120:


==== With xdg_menu ====
==== With xdg_menu ====
<pre>
$ xdg_menu --format awesome --root-menu /etc/xdg/menus/arch-applications.menu >~/.config/awesome/archmenu.lua
</pre>


Then edit your rc.lua as shown below
$ xdg_menu --format awesome --root-menu /etc/xdg/menus/arch-applications.menu > ~/.config/awesome/archmenu.lua
* Add a require statment for your new menu.lua file
 
* Add an entry to your awful.menu object for your new menu which calls xdgmenu
Then, edit your {{ic|rc.lua}} as shown below.
<pre>
 
* Add a require statment for your new {{ic|menu.lua}} file.
* Add an entry to your {{ic|awful.menu}} object for your new menu which calls {{ic|xdg-menu}}.
 
{{bc|1=
...
...
xdg_menu = require("archmenu")
xdg_menu = require("archmenu")
Line 137: Line 140:
                         })
                         })
...
...
</pre>
}}


=== IceWM ===
=== IceWM ===


==== With xdg_menu ====
==== With xdg_menu ====
<pre>
$ xdg_menu --format icewm --fullmenu --root-menu /etc/xdg/menus/arch-applications.menu >>~/.icewm/programs
</pre>
==== With update-menus ====
* Uncomment icewm in /etc/update-menus.conf
* run update-menus as root
* make symlink to /var/cache/xdg-menu/icewm/programs in ~/.icewm/programs
=== Ion3 ===
==== With xdg_menu ====
<pre>
$ xdg_menu --format ion3  --root-menu /etc/xdg/menus/arch-applications.menu >~/.ion3/default-session--0/_xdg-menu.lua
</pre>
After that, change your cfg_menus.lua to include _xdg-menu.lua file and add menu into mainmenu. For example:
<pre>
...


dopath("_xdg-menu")
$ xdg_menu --format icewm --fullmenu --root-menu /etc/xdg/menus/arch-applications.menu >> ~/.icewm/programs
 
-- Main menu
defmenu("mainmenu", {
    submenu("XDG Menu",        "<NAME-OF-FIRST-MENU-IN-_xdg-menu.lua-FILE>"),
    submenu("Programs",        "appmenu"),
    menuentry("Lock screen",    "ioncore.exec_on(_, 'xlock')"),
    menuentry("Help",          "mod_query.query_man(_)"),
    menuentry("About Ion",      "mod_query.show_about_ion(_)"),
    submenu("Styles",          "stylemenu"),
    submenu("Session",          "sessionmenu"),
})
 
...
</pre>


==== With update-menus ====
==== With update-menus ====


* Uncomment ion3 in /etc/update-menus.conf
* Uncomment ''icewm'' in {{ic|/etc/update-menus.conf}}.
* run update-menus as root
* Run {{ic|update-menus}} as root.
* change your cfg_menus.lua to include xdg-menu.lua file and add menu into mainmenu.
* Make a symlink to {{ic|/var/cache/xdg-menu/icewm/programs}} in {{ic|~/.icewm/programs}}.
 
For example:
 
<pre>
...
 
dopath("/var/cache/xdg-menu/ion3/xdg-menu.lua")
 
-- Main menu
defmenu("mainmenu", {
    submenu("XDG Menu",        "<NAME-OF-FIRST-MENU-IN-xdg-menu.lua-FILE>"),
    submenu("Programs",        "appmenu"),
    menuentry("Lock screen",    "ioncore.exec_on(_, 'xlock')"),
    menuentry("Help",          "mod_query.query_man(_)"),
    menuentry("About Ion",      "mod_query.show_about_ion(_)"),
    submenu("Styles",          "stylemenu"),
    submenu("Session",          "sessionmenu"),
})
 
...
</pre>


=== FluxBox ===
=== FluxBox ===
Line 212: Line 158:
==== With xdg_menu ====
==== With xdg_menu ====


<pre>
$ xdg_menu --format fluxbox --root-menu /etc/xdg/menus/arch-applications.menu > ~/.fluxbox/my-menu
$ xdg_menu --format fluxbox --root-menu /etc/xdg/menus/arch-applications.menu >~/.fluxbox/my-menu
</pre>


Change your menu file to include generated menu.
Change your menu file to include the generated menu.


For example add line:
For example, add this line:


<pre>
[include] (my-menu)
      [include] (my-menu)
</pre>


==== With update-menus ====
==== With update-menus ====


* Uncomment fluxbox in /etc/update-menus.conf
* Uncomment ''fluxbox'' in {{ic|/etc/update-menus.conf}}.
* run update-menus as root
* Run {{ic|update-menus}} as root.
* change your menu file to include generated menu.
* Change your menu file to include generated menu.


For example add line:
For example, add this line:


<pre>
[include] (/var/cache/xdg-menu/fluxbox/boxrc)
      [include] (/var/cache/xdg-menu/fluxbox/boxrc)
</pre>


=== OpenBox ===
=== OpenBox ===
Line 240: Line 180:
==== With xdg_menu ====
==== With xdg_menu ====


Generate menu with
Generate menu with:
<pre>
$ xdg_menu --format openbox3 --root-menu /etc/xdg/menus/arch-applications.menu > xdg-menu.xml
</pre>


and manually add it into your menu.xml. For example, put xdg-menu.xml into menu.xml and add:
$ xdg_menu --format openbox3 --root-menu /etc/xdg/menus/arch-applications.menu > xdg-menu.xml


<pre>
And manually add it into your {{ic|menu.xml}}. For example, put {{ic|xdg-menu.xml}} into {{ic|menu.xml}} and add:
<menu id="Applications" />
</pre>


into root-menu.
<menu id="Applications" />
 
Into {{ic|root-menu}}.


==== As a pipe menu ====
==== As a pipe menu ====
Line 257: Line 194:
Using xdg_open as a pipe menu gives you the added benefit of having a menu that automatically updates when you install new applications.
Using xdg_open as a pipe menu gives you the added benefit of having a menu that automatically updates when you install new applications.


Add the following somewhere inside your menu.xml between your root menu tags
Add the following somewhere inside your menu.xml between your root menu tags:
<pre>
 
<menu id="applications" label="Applications" execute="xdg_menu --format openbox3-pipe --root-menu /etc/xdg/menus/arch-applications.menu" />
<menu id="applications" label="Applications" execute="xdg_menu --format openbox3-pipe --root-menu /etc/xdg/menus/arch-applications.menu" />
</pre>


A very basic example:
A very basic example:
<pre>
 
{{bc|<nowiki>
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>


Line 279: Line 216:


</openbox_menu>
</openbox_menu>
</pre>
</nowiki>}}


==== With update-menus ====
==== With update-menus ====
* Uncomment openbox in /etc/update-menus.conf
 
* run update-menus as root
* Uncomment ''openbox'' in {{ic|/etc/update-menus.conf}}.
* change your menu.xml file to include generated menu.
* Run {{ic|update-menus}} as root.
* Change your {{ic|menu.xml}} file to include generated menu.


For example, add following to root-menu:
For example, add following to root-menu:
<pre>
 
<menu id="xdg-menu" label="XDG Menu" execute="cat /var/cache/xdg-menu/openbox/menu.xml"/>
<menu id="xdg-menu" label="XDG Menu" execute="cat /var/cache/xdg-menu/openbox/menu.xml"/>
</pre>


=== Twm ===
=== Twm ===
Line 295: Line 232:
==== With xdg_menu ====
==== With xdg_menu ====


Use
Use:
<pre>
$ xdg_menu --format twm --root-menu /etc/xdg/menus/arch-applications.menu >my-twm-menu
</pre>


and add it into twmrc manually. In the case of twm derivatives with m4 preprocessing such as vtwm or ctwm it can be included by adding
$ xdg_menu --format twm --root-menu /etc/xdg/menus/arch-applications.menu >my-twm-menu


<pre>
And add it into twmrc manually. In the case of twm derivatives with m4 preprocessing such as vtwm or ctwm it can be included by adding:
sinclude(`/PATH/TO/my-twm-menu')
</pre>


to *twmrc.
sinclude(`/PATH/TO/my-twm-menu')
 
To {{ic|*twmrc}}.


==== With update-menus ====
==== With update-menus ====


* Uncomment twm in /etc/update-menus.conf
* Uncomment ''twm'' in {{ic|/etc/update-menus.conf}}.
* Add into /etc/X11/twm/system.twmrc file applications menu (add following line:
* Add in {{ic|/etc/X11/twm/system.twmrc}} a file applications menu (add it into {{ic|defops menu}}):
 
   "apps"          f.menu "Applications"
   "apps"          f.menu "Applications"
into defops menu)
* run update-menus as root
* run twm -f /var/cache/xdg-menu/twm/twmrc


(You will also want to add your other customizations to /etc/X11/twm/system.twmrc.)
* Run {{ic|update-menus}} as root.
* Run {{ic|twm -f /var/cache/xdg-menu/twm/twmrc}}.
 
{{Tip|You will also want to add your other customizations to {{ic|/etc/X11/twm/system.twmrc}}.}}


=== WindowMaker ===
=== WindowMaker ===
Line 323: Line 258:
==== With xdg_menu ====
==== With xdg_menu ====


Use
Use:
<pre>
$ xdg_menu --format WindowMaker --root-menu /etc/xdg/menus/arch-applications.menu >my-wm-menu
</pre>


and add
$ xdg_menu --format WindowMaker --root-menu /etc/xdg/menus/arch-applications.menu >my-wm-menu


<pre>
And add:
#include "my-wm-menu"
</pre>


into your WindowMaker menu file.
#include "my-wm-menu"
 
Into your WindowMaker menu file.


You can also use the WPrefs "Application Menu Definitions", and add the xdg command as a parameter in a "Generated Submenu" object.
You can also use the WPrefs "Application Menu Definitions", and add the xdg command as a parameter in a "Generated Submenu" object.


==== With update-menus ====
==== With update-menus ====
* Uncomment WindowMaker in /etc/update-menus.conf
* run update-menus as root
* add


<pre>
* Uncomment ''WindowMaker'' in {{ic|/etc/update-menus.conf}}.
#include "/var/cache/xdg-menu/WindowMaker/wmrc"
* Run {{ic|update-menus}} as root.
</pre>
* Add:


into your menu file.
#include "/var/cache/xdg-menu/WindowMaker/wmrc"
 
Into your menu file.


=== Fvwm2 ===
=== Fvwm2 ===
Line 353: Line 284:
==== With xdg_menu ====
==== With xdg_menu ====


Generate menu
Generate the menu:


<pre>
$ xdg_menu --format fvwm2 --root-menu /etc/xdg/menus/arch-applications.menu >fvwm2-menu
$ xdg_menu --format fvwm2 --root-menu /etc/xdg/menus/arch-applications.menu >fvwm2-menu
</pre>


and add menu into root menu
And add it into the root menu:


<pre>
{{bc|
read fvwm2-menu
read fvwm2-menu


AddToMenu MenuFvwmRoot  "Root Menu"            Title
AddToMenu MenuFvwmRoot  "Root Menu"            Title
+                      "&0. XDG Menu"          Popup xdg_menu
+                      "&0. XDG Menu"          Popup xdg_menu
</pre>
}}


==== With update-menus ====
==== With update-menus ====


* Uncomment fvwm2 in /etc/update-menus.conf
* Uncomment ''fvwm2'' in {{ic|/etc/update-menus.conf}}.
* run update-menus as root
* Run {{ic|update-menus}} as root.
* change your .fvwm2rc file to include generated menu. For example:
* Change your {{ic|.fvwm2rc}} file to include generated menu. For example:


<pre>
AddToMenu MenuFvwmRoot  "Root Menu"            Title
AddToMenu MenuFvwmRoot  "Root Menu"            Title
+                      "&0. XDG Menu"          Popup xdg_menu
+                      "&0. XDG Menu"          Popup xdg_menu
</pre>


<pre>
read /var/cache/xdg-menu/fvwm2/fvwm2rc
read /var/cache/xdg-menu/fvwm2/fvwm2rc
</pre>


=== BlackBox ===
=== BlackBox ===
Line 387: Line 312:
==== With xdg_menu ====
==== With xdg_menu ====


<pre>
$ xdg_menu --format blackbox  --root-menu /etc/xdg/menus/arch-applications.menu >my-menu
$ xdg_menu --format blackbox  --root-menu /etc/xdg/menus/arch-applications.menu >my-menu
</pre>


Change your menu file to include generated menu.
Change your menu file to include the generated menu.


For example add line:
For example, add this line:


<pre>
[include] (my-menu)
[include] (my-menu)
</pre>


==== With update-menus ====
==== With update-menus ====


* Uncomment blackbox in /etc/update-menus.conf
* Uncomment ''blackbox'' in {{ic|/etc/update-menus.conf}}.
* run update-menus as root
* Run {{ic|update-menus}} as root.
* change your menu file to include generated menu.
* Change your menu file to include the generated menu.


For example add line:
For example, add this line:


<pre>
[include] (/var/cache/xdg-menu/blackbox/boxrc)
[include] (/var/cache/xdg-menu/blackbox/boxrc)
</pre>


== See also ==
== See also ==

Latest revision as of 05:15, 12 May 2023

xdg-menu is a tool that generates XDG Desktop Menus for the following window managers:

KDE, GNOME, Xfce and Enlightenment are already XDG compatible.

Installation

Install the archlinux-xdg-menu package.

Menu hierarchy

  • Applications
    • Accessibility
    • Accessories
    • Development
    • Education
    • Games
    • Graphics
    • Internet
    • Multimedia
    • Office
    • Other
    • Science
    • System

Configuration

xdg_menu relies on three sets of information to generate menus: a root menu or in other words an XML menu template generally passed on the command line, information cached when it was last run, and a series of configuration files.

  • You can find some XML menu templates in /etc/xdg/menus.
  • If altering the code in xdg_menu to change layout, make sure you delete everything in ~/.xdg_menu_cache or you will spend hours trying to figure out why your changes to the perl script do not take.
  • You can find individual application configurations in /usr/share/applications.

Other configuration file directories can be found under /usr/share. In most cases you will not need to touch these. However if you want to change how your menu is layed out you can alter the menu template for minor changes. Major changes require tweaking the actual xdg_menu perl script. If you find that applications do not appear or that they are called strange things, then you will need to look at the .desktop file in /usr/share/applications. Check the desktop entry specification.

Adding desktop entries from other directories

By default, the Xdg-menu will be populated with applications which install their desktop entries to /usr/share/applications. To add applications to the menu which install their desktop entry to a user folder such as ~/.local/share/applications, edit the /etc/xdg/menus/arch-applications.menu file and add an <AppDir> tag for the relevant directory, see below:

/etc/xdg/menus/arch-applications.menu
<Menu>

  <Name>Applications</Name>
  <Directory>Arch-Applications.directory</Directory>
  <DefaultAppDirs/>
  <AppDir>/home/username/.local/share/applications</AppDir>
  <DefaultDirectoryDirs/>
  <DefaultMergeDirs/>
  ...

Usage

xdg_menu

xdg_menu [--format <format>] [--desktop <desktop>] 
         [--charset <charset>] [--language <language>]  
	 [--root-menu <root-menu>] [--die-on-error]
	 [--fullmenu] [--help]
		 
	format - output format
	         possible formats: twm, WindowMaker, fvwm2, icewm, ion3
	                           blackbox, fluxbox, openbox, 
				   xfce4, openbox3, openbox3-pipe, awesome
				   readable
		 default: WindowMaker
		
 	fullmenu  - output a full menu and not only a submenu

	desktop - desktop name for NotShowIn and OnlyShowIn
		 default: the same as format
			 
	charset - output charset
		 default: <locale>
			 
	language - output language
		 default: <locale>
			 
	root-menu - location of root menu file
		 default: /opt/gnome/etc/xdg/menus/applications.menu
			 
	die-on-error - abort execution on any error, 
		 default: try to continue

	verbose - print debugging information
		 
	help - print this text

update-menus

update-menus updates WM's menus from XDG data and can be configured to do it automaticaly.

This is a script wrapper around xdg_menu that relies on /etc/update-menus.conf

To use it, you need to install the archlinux-xdg-menu package (xdg_menu)

In /etc/update-menus.conf, you have to select from a list of window managers for which the menu should be generated. Comments with # are allowed.

All generated menus are placed in /var/cache/xdg-menu/. See wm-specific #Examples section of this page to get more information.

Examples

Awesome

With xdg_menu

$ xdg_menu --format awesome --root-menu /etc/xdg/menus/arch-applications.menu > ~/.config/awesome/archmenu.lua

Then, edit your rc.lua as shown below.

  • Add a require statment for your new menu.lua file.
  • Add an entry to your awful.menu object for your new menu which calls xdg-menu.
...
xdg_menu = require("archmenu")
...

...
mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
                                    { "Applications", xdgmenu },
                                    { "open terminal", terminal }
                                  }
                        })
...

IceWM

With xdg_menu

$ xdg_menu --format icewm --fullmenu --root-menu /etc/xdg/menus/arch-applications.menu >> ~/.icewm/programs

With update-menus

  • Uncomment icewm in /etc/update-menus.conf.
  • Run update-menus as root.
  • Make a symlink to /var/cache/xdg-menu/icewm/programs in ~/.icewm/programs.

FluxBox

With xdg_menu

$ xdg_menu --format fluxbox --root-menu /etc/xdg/menus/arch-applications.menu > ~/.fluxbox/my-menu

Change your menu file to include the generated menu.

For example, add this line:

[include] (my-menu)

With update-menus

  • Uncomment fluxbox in /etc/update-menus.conf.
  • Run update-menus as root.
  • Change your menu file to include generated menu.

For example, add this line:

[include] (/var/cache/xdg-menu/fluxbox/boxrc)

OpenBox

With xdg_menu

Generate menu with:

$ xdg_menu --format openbox3 --root-menu /etc/xdg/menus/arch-applications.menu > xdg-menu.xml

And manually add it into your menu.xml. For example, put xdg-menu.xml into menu.xml and add:

<menu id="Applications" />

Into root-menu.

As a pipe menu

Using xdg_open as a pipe menu gives you the added benefit of having a menu that automatically updates when you install new applications.

Add the following somewhere inside your menu.xml between your root menu tags:

<menu id="applications" label="Applications" execute="xdg_menu --format openbox3-pipe --root-menu /etc/xdg/menus/arch-applications.menu" />

A very basic example:

<?xml version="1.0" encoding="UTF-8"?>

<openbox_menu xmlns="http://openbox.org/3.4/menu">

<menu id="root-menu" label="Openbox 3">
  <menu id="applications" label="Applications" execute="xdg_menu --format openbox3-pipe --root-menu /etc/xdg/menus/arch-applications.menu" />
  <separator />
  <item label="Log Out">
    <action name="Exit">
      <prompt>yes</prompt>
    </action>
  </item>
</menu>

</openbox_menu>

With update-menus

  • Uncomment openbox in /etc/update-menus.conf.
  • Run update-menus as root.
  • Change your menu.xml file to include generated menu.

For example, add following to root-menu:

<menu id="xdg-menu" label="XDG Menu" execute="cat /var/cache/xdg-menu/openbox/menu.xml"/>

Twm

With xdg_menu

Use:

$ xdg_menu --format twm --root-menu /etc/xdg/menus/arch-applications.menu >my-twm-menu

And add it into twmrc manually. In the case of twm derivatives with m4 preprocessing such as vtwm or ctwm it can be included by adding:

sinclude(`/PATH/TO/my-twm-menu')

To *twmrc.

With update-menus

  • Uncomment twm in /etc/update-menus.conf.
  • Add in /etc/X11/twm/system.twmrc a file applications menu (add it into defops menu):
 "apps"          f.menu "Applications"
  • Run update-menus as root.
  • Run twm -f /var/cache/xdg-menu/twm/twmrc.
Tip: You will also want to add your other customizations to /etc/X11/twm/system.twmrc.

WindowMaker

With xdg_menu

Use:

$ xdg_menu --format WindowMaker --root-menu /etc/xdg/menus/arch-applications.menu >my-wm-menu

And add:

#include "my-wm-menu"

Into your WindowMaker menu file.

You can also use the WPrefs "Application Menu Definitions", and add the xdg command as a parameter in a "Generated Submenu" object.

With update-menus

  • Uncomment WindowMaker in /etc/update-menus.conf.
  • Run update-menus as root.
  • Add:
#include "/var/cache/xdg-menu/WindowMaker/wmrc"

Into your menu file.

Fvwm2

With xdg_menu

Generate the menu:

$ xdg_menu --format fvwm2 --root-menu /etc/xdg/menus/arch-applications.menu >fvwm2-menu

And add it into the root menu:

read fvwm2-menu

AddToMenu MenuFvwmRoot  "Root Menu"             Title
+                       "&0. XDG Menu"          Popup xdg_menu

With update-menus

  • Uncomment fvwm2 in /etc/update-menus.conf.
  • Run update-menus as root.
  • Change your .fvwm2rc file to include generated menu. For example:
AddToMenu MenuFvwmRoot  "Root Menu"             Title
+                       "&0. XDG Menu"          Popup xdg_menu
read /var/cache/xdg-menu/fvwm2/fvwm2rc

BlackBox

With xdg_menu

$ xdg_menu --format blackbox  --root-menu /etc/xdg/menus/arch-applications.menu >my-menu

Change your menu file to include the generated menu.

For example, add this line:

[include] (my-menu)

With update-menus

  • Uncomment blackbox in /etc/update-menus.conf.
  • Run update-menus as root.
  • Change your menu file to include the generated menu.

For example, add this line:

[include] (/var/cache/xdg-menu/blackbox/boxrc)

See also