diff options
Diffstat (limited to 'examples/afterstep')
-rwxr-xr-x | examples/afterstep | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/examples/afterstep b/examples/afterstep new file mode 100755 index 0000000..662dbb6 --- /dev/null +++ b/examples/afterstep @@ -0,0 +1,48 @@ +#!/usr/bin/install-menu +# -*- mode: shell-script; -*- +#I need menu-1! +# +#NOTE: the first line of this script _must_ be +# equal to "#!/usr/bin/install-menu", otherwise update-menus +# will feed this script old-compat-mode data. +# +#More info: /usr/share/doc/menu/html. +# +compat="menu-1" +!include menu.h + +compat="menu-2" + +function mod($var,$com)=" " $var " \"" + title() ifnempty($hotkey,"&" toupper($hotkey)) + "\" exec " $com "\n"; + +function ex($com)=mod("Exec",$com); + + +supported; + asmodule= mod("Module", $command); + fvwmmodule= mod("Exec", $command); + wm= mod("Restart",$command); + x11fvwm= ex($command); + x11= ex($command); + text= ex(term()); +endsupported; + +startmenu= "PopUp \"" $section "\"\n Title \"" title() "\"\n"; + +endmenu= ifempty(title(), + " Popup \"Exit\" Quit-Verify\n" ) + "EndPopUp\n"; +#very clever endmenu! (hadn't thought of doing it like that myself). + +submenutitle=" Popup \"" title() cond_surr(icon(),"%","%") "\"" + $section "\n"; + +genmenu= "menudefs.hook"; + +rootprefix="/etc/X11/afterstep/"; +userprefix=".afterstep/"; +mainmenutitle="Debian Menu"; + + |