wok diff blackbox/stuff/menu @ rev 24433

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 12 18:42:31 2022 +0000 (2022-02-12)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/blackbox/stuff/menu	Sat Feb 12 18:42:31 2022 +0000
     1.3 @@ -0,0 +1,93 @@
     1.4 +# This is the default menu file for Blackbox 0.33.0 and up
     1.5 +# suitable for SliTaz
     1.6 +# 
     1.7 +# Lines beginning with the '#' character are ignored.
     1.8 +#
     1.9 +# The new syntax is simpler than the old X resource format...
    1.10 +# Each menu item consists of 2 or 3 fields:
    1.11 +#
    1.12 +#	[command]  (label)  {data}
    1.13 +#
    1.14 +# where [command] is one of:
    1.15 +#
    1.16 +#   [begin] [end] [exec] [exit] [reconfig] [restart] [submenu] 
    1.17 +#   [style] [stylesdir] [include] [workspaces] [config]
    1.18 +#
    1.19 +# [begin] is used for the top level menu
    1.20 +# [submenu] is used for submenus
    1.21 +# [end] must be used with BOTH [begin] and [submenu] to tell the parser to stop
    1.22 +#   reading from the file.
    1.23 +#
    1.24 +# [exec] (label) {string}
    1.25 +# This will insert an item that runs a program.
    1.26 +#
    1.27 +# [exit] (label)
    1.28 +# This will insert an item that exits the window manager.
    1.29 +#
    1.30 +# [reconfig] (label) {string}
    1.31 +# This will insert an item that tells blackbox to re-read it's configuration
    1.32 +#  files.  {string} is optional, and if supplied, will execute the string with
    1.33 +#  /bin/sh -c before the reconfiguration is performed.  (this is helpful for
    1.34 +#  writing multiple config files and switching between them)
    1.35 +#
    1.36 +# [restart] (label) {string}
    1.37 +# This will insert an item to restart the window manager.  {string} is
    1.38 +# optional, and if omitted, blackbox will restart itself.  If {string} is
    1.39 +# specified, then a different window manager will be started.
    1.40 +#
    1.41 +# [style] (filename)
    1.42 +# This will insert an item to reconfigure blackbox with the new style. This
    1.43 +# change is saved when blackbox exits or restarts.
    1.44 +#
    1.45 +# [include] (filename)
    1.46 +# This will read more menu items from the file "filename".  The file cannot
    1.47 +# contain a [begin] or [end], except for the [end] needed for submenus.
    1.48 +#
    1.49 +# [workspaces] (label)
    1.50 +# This tells Blackbox to insert a "link" to the workspaces menu directly
    1.51 +# into your menu.
    1.52 +#
    1.53 +# [config] (label)
    1.54 +# This tells Blackbox to insert the ConfigMenu into your menu.  The ConfigMenu
    1.55 +# allows you to change several options found in your ~/.blackboxrc file on the
    1.56 +# fly.
    1.57 +#
    1.58 +# example:
    1.59 +
    1.60 +[begin] (Blackbox)
    1.61 +  [exec] (xterm)    {xterm -ls}
    1.62 +  [exec] (Sakura)   {sakura}
    1.63 +
    1.64 +  [exec] (leafpad)    {leafpad}
    1.65 +  [exec] (ePDFView)   {epdfview}
    1.66 +
    1.67 +  [exec] (SliTaz Panel)   {tazpanel}
    1.68 +
    1.69 +  [submenu] (Graphics)
    1.70 +    [exec] (Gpicview)     {gpicview}
    1.71 +  [end]
    1.72 +
    1.73 +  [submenu] (Internet)
    1.74 +    [exec] (Midori)     {midori}
    1.75 +    [exec] (Tazweb)     {tazweb}
    1.76 +  [end]
    1.77 +
    1.78 +  [submenu] (Styles) {Choose a style...}
    1.79 +    [stylesdir] (/usr/share/blackbox/styles)
    1.80 +  [end]
    1.81 +
    1.82 +  [workspaces] (Workspace List)
    1.83 +  [config] (Configuration)
    1.84 +
    1.85 +  [reconfig] (Reconfigure)
    1.86 +  [restart] (Restart)
    1.87 +  [submenu] (Others)              {Other Window Managers}
    1.88 +    [restart] (Start Enlightenment) {enlightenment}
    1.89 +    [restart] (Start openbox)     {openbox}
    1.90 +    [restart] (Start pekwm)       {pekwm}
    1.91 +  [end]
    1.92 +
    1.93 +  [exit] (Exit)
    1.94 +[end]
    1.95 +
    1.96 +# End of example menu.