...A-Left and A-Right (for move and resize) to avoid interfering with some
clients like CAD programs and games.
</labwc_config>
```
- Example to un-bind the default alt + left-button-press to move window:
+ Example to un-bind the default Super + left-button-press to move window:
```
<mouse>
<default/>
<context name="Frame">
- <mousebind button="A-Left" action="Press"/>
- <mousebind button="A-Left" action="Drag"/>
+ <mousebind button="W-Left" action="Press"/>
+ <mousebind button="W-Left" action="Drag"/>
</context>
</mouse>
```
<doubleClickTime>500</doubleClickTime>
<context name="Frame">
- <mousebind button="A-Left" action="Press">
+ <mousebind button="W-Left" action="Press">
<action name="Focus" />
<action name="Raise" />
</mousebind>
- <mousebind button="A-Left" action="Drag">
+ <mousebind button="W-Left" action="Drag">
<action name="Move" />
</mousebind>
- <mousebind button="A-Right" action="Press">
+ <mousebind button="W-Right" action="Press">
<action name="Focus" />
<action name="Raise" />
</mousebind>
- <mousebind button="A-Right" action="Drag">
+ <mousebind button="W-Right" action="Drag">
<action name="Resize" />
</mousebind>
</context>
.action = "Resize",
}, {
.context = "Frame",
- .button = "A-Left",
+ .button = "W-Left",
.event = "Press",
.action = "Focus",
}, {
.context = "Frame",
- .button = "A-Left",
+ .button = "W-Left",
.event = "Press",
.action = "Raise",
}, {
.context = "Frame",
- .button = "A-Left",
+ .button = "W-Left",
.event = "Drag",
.action = "Move",
}, {
.context = "Frame",
- .button = "A-Right",
+ .button = "W-Right",
.event = "Press",
.action = "Focus",
}, {
.context = "Frame",
- .button = "A-Right",
+ .button = "W-Right",
.event = "Press",
.action = "Raise",
}, {
.context = "Frame",
- .button = "A-Right",
+ .button = "W-Right",
.event = "Drag",
.action = "Resize",
}, {