Openbox 禁用 Alt+F4

Openbox 禁用 Alt+F4

每次我按Alt+时F4,我在 Openbox (3.6.1) 中打开的窗口就会关闭。

我尝试按照官方说明进行操作,但没有效果:

  1. 我从中删除了以下内容~/.config/openbox/rc.xml

    <keybind key="A-F4">
       <action name="Close"/>
    </keybind>
    
  2. 执行:

    openbox --reconfigure
    
  3. 最后又重新启动了。

但是,按Alt+F4仍会关闭当前窗口。

答案1

感谢这里,您可以通过编辑类似以下代码来禁用Openbox 中的Alt+组合:F4.config/openbox/lxde-rc.xml

<keybind key="A-F4">
  <action name="If">
    <title>* Chromium</title>
    <then>
      <!-- Do nothing when Chrome is the active window -->
    </then>
    <else>
      <!-- Do nothing in other cases as well -->
    </else>
  </action>
</keybind>

答案2

更简单的方法是在命令中包含一个#来禁用它(如果您想在其他时间重新激活它):

action name="#Close"/

然后运行:

openbox --reconfigure

相关内容