在openbox中没有菜单


Answers:


0

我认为你必须在./config/openbox/rc.xml中绑定“右键单击”

你必须寻找菜单。

这是一个例子。

  <mousebind button="Right" action="Press">
    <action name="ShowMenu">
      <menu>root-menu</menu>
    </action>
  </mousebind>

我希望你的问题与此有关。


-1

有同样的问题,并找到了一个解决方法.Forgot我找到了答案,将搜索它并发布在这里。

这将使您可以使用Alt + F1打开根菜单,但按钮单击问题仍然存在。

假设您在〜/ .config / openbox中有以下文件

autostart  environment  menu.xml  rc.xml

将以下行添加到rc.xml

181     <keybind key="A-F1">
182       <action name="ShowMenu">
183         <menu>root-menu</menu>
184       </action>
185     </keybind>

然后将以下行添加到自动启动文件

ksuperkey -e 'Super_L=Alt_L|F1' &
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.