wok annotate blackbox/stuff/menu @ rev 24676

updated iptstate (2.2.6 -> 2.2.7)
author Hans-G?nter Theisgen
date Sat Mar 12 08:53:57 2022 +0100 (2022-03-12)
parents
children
rev   line source
Hans-G?nter@24371 1 # This is the default menu file for Blackbox 0.33.0 and up
Hans-G?nter@24371 2 # suitable for SliTaz
Hans-G?nter@24371 3 #
Hans-G?nter@24371 4 # Lines beginning with the '#' character are ignored.
Hans-G?nter@24371 5 #
Hans-G?nter@24371 6 # The new syntax is simpler than the old X resource format...
Hans-G?nter@24371 7 # Each menu item consists of 2 or 3 fields:
Hans-G?nter@24371 8 #
Hans-G?nter@24371 9 # [command] (label) {data}
Hans-G?nter@24371 10 #
Hans-G?nter@24371 11 # where [command] is one of:
Hans-G?nter@24371 12 #
Hans-G?nter@24371 13 # [begin] [end] [exec] [exit] [reconfig] [restart] [submenu]
Hans-G?nter@24371 14 # [style] [stylesdir] [include] [workspaces] [config]
Hans-G?nter@24371 15 #
Hans-G?nter@24371 16 # [begin] is used for the top level menu
Hans-G?nter@24371 17 # [submenu] is used for submenus
Hans-G?nter@24371 18 # [end] must be used with BOTH [begin] and [submenu] to tell the parser to stop
Hans-G?nter@24371 19 # reading from the file.
Hans-G?nter@24371 20 #
Hans-G?nter@24371 21 # [exec] (label) {string}
Hans-G?nter@24371 22 # This will insert an item that runs a program.
Hans-G?nter@24371 23 #
Hans-G?nter@24371 24 # [exit] (label)
Hans-G?nter@24371 25 # This will insert an item that exits the window manager.
Hans-G?nter@24371 26 #
Hans-G?nter@24371 27 # [reconfig] (label) {string}
Hans-G?nter@24371 28 # This will insert an item that tells blackbox to re-read it's configuration
Hans-G?nter@24371 29 # files. {string} is optional, and if supplied, will execute the string with
Hans-G?nter@24371 30 # /bin/sh -c before the reconfiguration is performed. (this is helpful for
Hans-G?nter@24371 31 # writing multiple config files and switching between them)
Hans-G?nter@24371 32 #
Hans-G?nter@24371 33 # [restart] (label) {string}
Hans-G?nter@24371 34 # This will insert an item to restart the window manager. {string} is
Hans-G?nter@24371 35 # optional, and if omitted, blackbox will restart itself. If {string} is
Hans-G?nter@24371 36 # specified, then a different window manager will be started.
Hans-G?nter@24371 37 #
Hans-G?nter@24371 38 # [style] (filename)
Hans-G?nter@24371 39 # This will insert an item to reconfigure blackbox with the new style. This
Hans-G?nter@24371 40 # change is saved when blackbox exits or restarts.
Hans-G?nter@24371 41 #
Hans-G?nter@24371 42 # [include] (filename)
Hans-G?nter@24371 43 # This will read more menu items from the file "filename". The file cannot
Hans-G?nter@24371 44 # contain a [begin] or [end], except for the [end] needed for submenus.
Hans-G?nter@24371 45 #
Hans-G?nter@24371 46 # [workspaces] (label)
Hans-G?nter@24371 47 # This tells Blackbox to insert a "link" to the workspaces menu directly
Hans-G?nter@24371 48 # into your menu.
Hans-G?nter@24371 49 #
Hans-G?nter@24371 50 # [config] (label)
Hans-G?nter@24371 51 # This tells Blackbox to insert the ConfigMenu into your menu. The ConfigMenu
Hans-G?nter@24371 52 # allows you to change several options found in your ~/.blackboxrc file on the
Hans-G?nter@24371 53 # fly.
Hans-G?nter@24371 54 #
Hans-G?nter@24371 55 # example:
Hans-G?nter@24371 56
Hans-G?nter@24371 57 [begin] (Blackbox)
Hans-G?nter@24371 58 [exec] (xterm) {xterm -ls}
Hans-G?nter@24371 59 [exec] (Sakura) {sakura}
Hans-G?nter@24371 60
Hans-G?nter@24371 61 [exec] (leafpad) {leafpad}
Hans-G?nter@24371 62 [exec] (ePDFView) {epdfview}
Hans-G?nter@24371 63
Hans-G?nter@24371 64 [exec] (SliTaz Panel) {tazpanel}
Hans-G?nter@24371 65
Hans-G?nter@24371 66 [submenu] (Graphics)
Hans-G?nter@24371 67 [exec] (Gpicview) {gpicview}
Hans-G?nter@24371 68 [end]
Hans-G?nter@24371 69
Hans-G?nter@24371 70 [submenu] (Internet)
Hans-G?nter@24371 71 [exec] (Midori) {midori}
Hans-G?nter@24371 72 [exec] (Tazweb) {tazweb}
Hans-G?nter@24371 73 [end]
Hans-G?nter@24371 74
Hans-G?nter@24371 75 [submenu] (Styles) {Choose a style...}
Hans-G?nter@24371 76 [stylesdir] (/usr/share/blackbox/styles)
Hans-G?nter@24371 77 [end]
Hans-G?nter@24371 78
Hans-G?nter@24371 79 [workspaces] (Workspace List)
Hans-G?nter@24371 80 [config] (Configuration)
Hans-G?nter@24371 81
Hans-G?nter@24371 82 [reconfig] (Reconfigure)
Hans-G?nter@24371 83 [restart] (Restart)
Hans-G?nter@24371 84 [submenu] (Others) {Other Window Managers}
Hans-G?nter@24371 85 [restart] (Start Enlightenment) {enlightenment}
Hans-G?nter@24371 86 [restart] (Start openbox) {openbox}
Hans-G?nter@24371 87 [restart] (Start pekwm) {pekwm}
Hans-G?nter@24371 88 [end]
Hans-G?nter@24371 89
Hans-G?nter@24371 90 [exit] (Exit)
Hans-G?nter@24371 91 [end]
Hans-G?nter@24371 92
Hans-G?nter@24371 93 # End of example menu.