logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Description

Static menus are built based on the menu.xml file located at "~/.config/labwc" and equivalent XDG Base Directories.

Localisation

Available localisation for the default "client-menu" is only shown if no "client-menu" is present in menu.xml. Any menu definition in menu.xml is interpreted as a user-override.

Name

labwc - menu file

See Also

labwc(1), labwc-actions(5), labwc-config(5), labwc-theme(5) 2025-05-23 labwc-menu(5)

Syntax

The menu file must be entirely enclosed within <openbox_menu> and </openbox_menu> tags. Inside these tags, menus are specified as follows: <!-- A toplevel menu --> <menu id="external_menu_settings" label="External Settings" icon="preferences-other"> <item label="Display setting"> <action name="Execute" command="wdisplays" /> </item> </menu> <!-- Another toplevel menu --> <menu id=""> <!-- A menu entry with an action, for example to execute an application --> <item label="" icon=""> <action></action> </item> <!-- A submenu defined elsewhere, uses external label and icon attributes --> <menu id="external_menu_settings" /> <!-- Horizontal line --> <separator /> <!-- An inline submenu --> <menu id="" label="" icon=""> ...some content... </menu> <!-- Title --> <separator label="" /> <!-- Pipemenu --> <menu id="" label="" icon="" execute="COMMAND" /> </menu> menu.id (when at toplevel) Define a menu tree. Each menu must be given an id, which is a unique identifier of the menu. This id is used to refer to the menu in a ShowMenu action. Default identifiers are • "root-menu" for the root window context menu • "client-menu" for a window's titlebar context menu • "client-list-combined-menu" for a list of all windows across all workspaces. Will change focus to the app that gets selected or go to workspace without activating any app if "Go there" is selected. • "client-send-to-menu" shows all workspaces and sends current view to that workspace when selected. menu.id (when nested under other <menu> element) Link to a submenu defined elsewhere (by a <menuid=""> at toplevel). menu.label The title of the menu, shown in its parent. A label must be given when defining a menu. menu.icon An icon to be rendered, shown in its parent. This argument is optional. See menu.item.icon for further details. menu.item.label The visible name of the menu item. menu.item.icon The name of an icon to be rendered in front of the menu entry. This attribute is optional. The name follows naming conventions of "Icon=" entries in .desktop files. If used, it is recommended to use the name of the icon only rather than a full path. This ensures that the icon will be looked up in the scale of the output where the menu is rendered. E.g. use of icon="vlc" is suggested over using icon="/usr/share/icons/hicolor/16x16/apps/vlc.png". menu.item.action See labwc-actions(5). Note: XML CDATA is supported for this node in order to maintain compatibility with obmenu-generator. menu.separator Horizontal line. menu.separator.label In a "separator" element, the label attribute transforms the separator from a horizontal line to a menu title (heading) with the text specified by label in it. menu.execute Command to execute for pipe menu. See details below.

See Also