I've been using Openbox and, by editing ~/.config/openbox/rc.xml, I can define keyboard shortcuts to place the window currently in focus in defined areas of the screen. For example:
where "W" is the Meta or Super key and "left", "right", "up" and "down" are the arrow keys.
My question is this: how can I do something equivalent in Kubuntu 16.04 (Plasma 5.5) with kwin?
Code:
<!-- Keybindings for window tiling --> <keybind key="W-Left"> # HalfLeftScreen <action name="Unmaximize"/> <action name="MoveResizeTo"><x>0</x><y>0</y><height>100%</height><width>50%</width></action> </keybind> <keybind key="W-Right"> # HalfRightScreen <action name="Unmaximize"/> <action name="MoveResizeTo"><x>-0</x><y>0</y><height>100%</height><width>50%</width></action> </keybind> <keybind key="W-Up"> # HalfUpperScreen <action name="Unmaximize"/> <action name="MoveResizeTo"><x>--4</x><y>0</y><width>100%</width><height>50%</height></action> </keybind> <keybind key="W-Down"> # HalfLowerScreen <action name="Unmaximize"/> <action name="MoveResizeTo"><x>--4</x><y>-0</y><width>100%</width><height>50%</height></action> </keybind>
My question is this: how can I do something equivalent in Kubuntu 16.04 (Plasma 5.5) with kwin?
Comment