Posts Tagged configuration
How to not break your hands when using key combinations (using *nix)
I find that trying to use both hands when entering key combinations feels slightly less inclined to cause injury than using the same hand. For example, instead of pressing control-C with only your left hand, you hold the control button with your right hand and with you left hand press a control button. This approach seems to limit the degree to which you need to contort your fingers – however I’m not a doctor, so perhaps you shouldn’t believe what I say.
As one might expect, there is a slight hurdle to jump to retrain oneself to use a completely new set of keybindings, which just happen to be pressing the same keys.
Before one can set out on such a mission there are some problems with the alt key that need to be negotiated. The alt key on the right-hand side is used as a modifier to enter interesting characters.By rebinding it so as to behave like the alt key on the right hand-side, you can perform alt-containing key combinations with either hand.
This rebinding can be done for one session by typing the following commands into the shell:
xmodmap -e "keycode 113 = Alt_L" #This should make the left hand alt key (key 113) behave like a left handed alt. xmodmap -e "clear mod5" #This should stop any key (and particular key 113) from being used to insert non-latin characters.
To make this permament one needs to modify the .xmodmap file in one’s home directory – or create it should it not exist. The arguments to the -e options are then added to this file. .xmodmap should then be executed by xmodmap when X starts.
For the purpose of cutting and pasting, the new section added to one’s .xmodmap file looks like:
<pre>
keycode 113 = Alt_L
clear mod5
</pre>
Notes
See “man xmodmap” for more details on how it works.
If your love for bizarre characters exceeds you desire for possible less contorted hands, you could try rebinding a different key to act as ‘mod5′. I might recommend using the windows (super) and context menu keys for this.
You should be able to do this with the ‘add’ command – though not that this takes keysyms rather than keycodes as arguments. (This will, hopefully, make sense after consulting the manual).
On windows one can use the freeware program Sharpkeys to carry out this change. This works by setting changing an appropriate registry key.
Add comment March 9, 2008