Topic: Howto easily handle windows only by keyboard
Hi all
I'm one of those people who likes to use only the keyboard, to handle windows operations like Minimize, Maximize, Resize etc.
This is easily done in the OpenBox windows manager by modifying the file that controls it all.
~/.config/openbox/rc.xml
In this file, look for:
<!-- Keybindings for windows -->And insert the following below it:
Maximize and unmaximize the current window:
<keybind key="A-F12">
<action name="ToggleMaximizeFull"/>
</keybind>Minimize the current window:
<keybind key="A-F11">
<action name="Iconify"/>
</keybind>Maximize and unmaximize the current window vertically:
<keybind key="A-F10">
<action name="ToggleMaximizeVert"/>
</keybind>Maximize and unmaximize the current window horizontally:
<keybind key="A-F9">
<action name="ToggleMaximizeHorz"/>
</keybind>Shade and unshade the current window (aka rool-up):
<keybind key="A-F8">
<action name="ToggleShade"/>
</keybind>Move the current window to Center:
<keybind key="A-m">
<action name="MoveToCenter"/>
</keybind>Resize the current window:
<keybind key="A-r">
<action name="Resize"/>
</keybind>I find this very usefull and less time consuming instead of grabbing the mouse all the time ![]()
This is what makes OpenBox the best windowsmanager available !
For further informations take a look at this page:
http://icculus.org/openbox/index.php/He
s#ShowMenu
Last edited by Scrat (2009-01-12 11:14:59)
Registered Linux user #133791 > Get counted at http://counter.li.org
-----------------------------------------------------------------------
So Many Things To Do, And No Time For Nuts !