Created
February 3, 2019 17:54
-
-
Save scriptnull/33bed4e6a5a3da80034a397abb572ac0 to your computer and use it in GitHub Desktop.
Windows style window management for openbox
This file contains 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
<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