Skip to content

Instantly share code, notes, and snippets.

@scriptnull
Created February 3, 2019 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scriptnull/33bed4e6a5a3da80034a397abb572ac0 to your computer and use it in GitHub Desktop.
Save scriptnull/33bed4e6a5a3da80034a397abb572ac0 to your computer and use it in GitHub Desktop.
Windows style window management for openbox
<keyboard>
<keybind key="W-Left">
<action name="Unmaximize"/>
<action name="MoveResizeTo"><x>0</x><y>0</y><height>100%</height><width>50%</width></action>
</keybind>
<keybind key="W-Right">
<action name="Unmaximize"/>
<action name="MoveResizeTo"><x>-0</x><y>0</y><height>100%</height><width>50%</width></action>
</keybind>
<keybind key="W-Up">
<action name="Unmaximize"/>
<action name="MoveResizeTo"><x>0</x><y>0</y><width>100%</width><height>50%</height></action>
</keybind>
<keybind key="W-Down">
<action name="Unmaximize"/>
<action name="MoveResizeTo"><x>0</x><y>-0</y><width>100%</width><height>50%</height></action>
</keybind>
<keybind key="W-M">
<action name="ToggleMaximizeFull" />
</keybind>
</keyboard>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment