Created
January 17, 2022 18:03
-
-
Save arrase/c3fccb12d217188d00ac743bc72f9c8a to your computer and use it in GitHub Desktop.
Openbox: resize windows
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
In the <keyboard> section in your ~/.config/openbox/lxqt-rc.xml file, add: | |
<keybind key="A-Left"> | |
<action name="UnmaximizeFull"/> | |
<action name="MoveResizeTo"> | |
<width>50%</width> | |
<height>100%</height> | |
<x>0%</x> | |
<y>0%</y> | |
</action> | |
</keybind> | |
<keybind key="A-Right"> | |
<action name="UnmaximizeFull"/> | |
<action name="MoveResizeTo"> | |
<width>50%</width> | |
<height>100%</height> | |
<x>50%</x> | |
<y>0%</y> | |
</action> | |
</keybind> | |
<keybind key="A-Down"> | |
<action name="UnmaximizeFull"/> | |
<action name="MoveResizeTo"> | |
<width>100%</width> | |
<height>50%</height> | |
<x>0%</x> | |
<y>50%</y> | |
</action> | |
</keybind> | |
<keybind key="A-Up"> | |
<action name="UnmaximizeFull"/> | |
<action name="MoveResizeTo"> | |
<width>100%</width> | |
<height>50%</height> | |
<x>0%</x> | |
<y>0%</y> | |
</action> | |
</keybind> | |
Run openbox --reconfigure to make the changes take effect. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment