[CrunchBang]禁止“桌面上鼠标滚轮切换工作区桌面“

鼠标滚轮切换虚拟桌面相关问题, 编辑 ~/.config/openbox/rc.xml

在   <context name="Desktop">段:

      <mousebind button="Up" action="Click">
        <action name="GoToDesktop">
          <to>previous</to>
        </action>
      </mousebind>
      <mousebind button="Down" action="Click">
        <action name="GoToDesktop">
          <to>next</to>
        </action>
      </mousebind>

 “mousebind”表示鼠标绑定,button=“up”是向上滚轮

“action   GotoDesktop”是切换(工作区)桌面

想【禁止】此功能直接注释掉就行<!--     -->

原文地址:https://www.cnblogs.com/lizunicon/p/3679690.html