Skip to content

Instantly share code, notes, and snippets.

@davelevine
Forked from uriel1998/openbox_tiling.rc
Created June 27, 2021 13:02
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 davelevine/a1c1bbc87100ad81179c6c05fb11a38e to your computer and use it in GitHub Desktop.
Save davelevine/a1c1bbc87100ad81179c6c05fb11a38e to your computer and use it in GitHub Desktop.
Openbox tiling emulation keybinds
<!-- Keybindings for moving windows -->
<keybind key="mod4-Left">
<action name="GoToDesktop">
<to>west</to>
<wrap>yes</wrap>
</action>
</keybind>
<keybind key="mod4-Right">
<action name="GoToDesktop">
<to>east</to>
<wrap>yes</wrap>
</action>
</keybind>
<keybind key="mod4-Up">
<action name="SendToDesktop">
<to>west</to>
</action>
</keybind>
<keybind key="mod4-Down">
<action name="SendToDesktop">
<to>east</to>
</action>
</keybind>
<keybind key="mod4-d">
<action name="ToggleShowDesktop"/>
</keybind>
<keybind key="mod4-Super_R">
<action name="MoveResizeTo">
<monitor>next</monitor>
</action>
</keybind>
<!-- Keybindings for tiling -->
<keybind key="A-KP_5">
<action name="ToggleMaximize"/>
</keybind>
<keybind key="A-KP_0">
<action name="Iconify"/>
</keybind>
<keybind key="A-KP_4">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>0</x>
<y>0</y>
<width>50%</width>
<height>100%</height>
</action>
</keybind>
<keybind key="A-KP_6">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>-0</x>
<y>0</y>
<width>50%</width>
<height>100%</height>
</action>
</keybind>
<keybind key="A-KP_8">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>0</x>
<y>0</y>
<width>100%</width>
<height>50%</height>
</action>
</keybind>
<keybind key="A-KP_2">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>0</x>
<y>-0</y>
<width>100%</width>
<height>50%</height>
</action>
</keybind>
<keybind key="A-KP_7">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>0</x>
<y>0</y>
<width>50%</width>
<height>50%</height>
</action>
</keybind>
<keybind key="A-KP_9">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>-0</x>
<y>0</y>
<width>50%</width>
<height>50%</height>
</action>
</keybind>
<keybind key="A-KP_1">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>0</x>
<y>-0</y>
<width>50%</width>
<height>50%</height>
</action>
</keybind>
<keybind key="A-KP_3">
<action name="Unmaximize"/>
<action name="MoveResizeTo">
<x>-0</x>
<y>-0</y>
<width>50%</width>
<height>50%</height>
</action>
</keybind>
<keybind key="A-KP_Add">
<action name="NextWindow">
<dialog>none</dialog>
<raise>yes</raise>
<linear>yes</linear>
<allDesktops>yes</allDesktops>
<interactive>no</interactive>
<finalactions>
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</finalactions>
</action>
</keybind>
<keybind key="A-KP_Subtract">
<action name="NextWindow">
<dialog>none</dialog>
<raise>yes</raise>
<linear>yes</linear>
<allDesktops>yes</allDesktops>
<interactive>no</interactive>
<finalactions>
<action name="Focus"/>
<action name="Raise"/>
<action name="Unshade"/>
</finalactions>
</action>
</keybind>
<keybind key="A-Tab">
<action name="NextWindow"/>
</keybind>
<keybind key="A-S-Tab">
<action name="PreviousWindow"/>
</keybind>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment