/etc/menu-methods/windowlab is in windowlab 1.40-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #!/usr/bin/install-menu
#
# Generates WindowLab menu for a select number of applications.
#
# Copyright (C) 2005 Stan Vasilyev <stan.vasilyev@csun.edu>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
compat="menu-1"
!include menu.h
rootprefix="/etc/X11/windowlab/"
userprefix=".windowlab/"
treewalk="(M)"
postrun="/usr/lib/windowlab/create_menu.sh "prefix()""
genmenu="menudefs.hook"
function iconordash()=ifelse(icon(),icon(),"-")
function q($com)=esc($com,"\"")
supported
x11= ""q(title())":"q($command)" \n"
text= ""q(title())":"q(term())" \n"
endsupported
mainmenutitle=""
submenutitle= ""
startmenu=""
endmenu=""
|