Skip to content
Ian LeCorbeau edited this page Apr 6, 2020 · 2 revisions

Default keyboard shortcuts:

Alt + Left,Right,Up,Down: move window in corresponding direction

    <!-- Move/Resize with keyboard -->
    <keybind key="A-Left">
      <action name="MoveRelative">
        <x>-5</x>
      </action>
    </keybind>
    <keybind key="A-Down">
      <action name="MoveRelative">
        <y>5</y>
      </action>
    </keybind>
    <keybind key="A-Right">
      <action name="MoveRelative">
        <x>5</x>
      </action>
    </keybind>
    <keybind key="A-Up">
      <action name="MoveRelative">
        <y>-5</y>
      </action>
    </keybind>
Clone this wiki locally