openbox要在桌面右键菜单中加一个菜单很容易
在家目录的.config/openbox/menu.xml文件中加入下面一项
<item label="Gvim文本编辑"><action name="Execute">
<command>/usr/bin/gvim</command>
<startupnotify>
<enabled>yes</enabled>
<name>gvim</name>
</startupnotify>
</action>
</item>
即可以加入一项右键菜单“Gvim文本编辑”
但是需要在终端中运行的程序,在menu.xml中这样加确是不行,例如下面这样子:
<item label="Gnuplot函数绘图">
<action name="Execute">
<command>/usr/bin/gnuplot</command>
<startupnotify>
<enabled>yes</enabled>
<name>gnuplot</name>
</startupnotify>
</action>
</item>
虽然可以在桌面右键菜单中加入一项“Gnuplot函数绘图