Created
May 2, 2015 13:37
-
-
Save annalinneajohansson/46991e31aabbdbfc430f to your computer and use it in GitHub Desktop.
Vertical/horizontal window tiling in Openbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Vertical tiling --> | |
| <keybind key="W-Right"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <width>50%</width> | |
| </action> | |
| <action name="MaximizeVert"/> | |
| <action name="MoveResizeTo"> | |
| <x>50%</x> | |
| <y>0</y> | |
| </action> | |
| </keybind> | |
| <keybind key="W-Left"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <width>50%</width> | |
| </action> | |
| <action name="MaximizeVert"/> | |
| <action name="MoveResizeTo"> | |
| <x>0</x> | |
| <y>0</y> | |
| </action> | |
| </keybind> | |
| <!-- Horizontal tiling --> | |
| <keybind key="W-Up"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <height>50%</height> | |
| </action> | |
| <action name="MaximizeHorz"/> | |
| <action name="MoveResizeTo"> | |
| <x>0</x> | |
| <y>0</y> | |
| </action> | |
| </keybind> | |
| <keybind key="W-Down"> | |
| <action name="UnmaximizeFull"/> | |
| <action name="MoveResizeTo"> | |
| <height>50%</height> | |
| </action> | |
| <action name="MaximizeHorz"/> | |
| <action name="MoveResizeTo"> | |
| <x>0</x> | |
| <y>50%</y> | |
| </action> | |
| </keybind> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment