openbox要在桌面右键菜单中加一个菜单很容易
在家目录的.config/openbox/menu.xml文件中加入下面一项
<item label="Gvim文本编辑">即可以加入一项右键菜单“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函数绘图”,但是点击却没有反应。
今天想了一下,发现可以这样子:
<item label="Gnuplot函数绘图">
<action name="Execute">
<command>/usr/bin/gnome-terminal -e /usr/bin/gnuplot -t gnuplot</command>
<startupnotify>
<enabled>yes</enabled>
<name>gnuplot</name>
</startupnotify>
</action>
</item>
利用gnome-terminal的-e选项,在进入终端后执行一个命令即可,算是完美解决了这个问题,-t选项指定终端的标题。
如果用其他终端模拟器,应该也会有相应的选项支持这种做法。