Better terminal in Mac OS X -- reversing the control and command key-mappings - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T03:17:16Zhttp://stackoverflow.com/feeds/question/75533http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/75533/better-terminal-in-mac-os-x-reversing-the-control-and-command-key-mappings1Better terminal in Mac OS X -- reversing the control and command key-mappingssomeguy2008-09-16T18:36:41Z2009-06-10T18:00:27Z
<p>I'm trying to have the same KDE Konsole experience within Mac OS X.</p>
<p>Here's my (overly complicated?) setup:</p>
<ul>
<li>I have Control and Command swapped at the System Preferences level. (Can't live without this)</li>
<li>Parallels lets you, at the Parallels application level, also reverse Control and Command. So I can undo the System Preferences setting (and get the setup I want within virtual Linux)</li>
</ul>
<p>I want this same per-application-opt-out for the Mac OS X Terminal app. Is it possible?</p>
http://stackoverflow.com/questions/75533/better-terminal-in-mac-os-x-reversing-the-control-and-command-key-mappings/164428#1644280Answer by Ben Stiglitz for Better terminal in Mac OS X -- reversing the control and command key-mappingsBen Stiglitz2008-10-02T20:30:10Z2008-10-02T20:30:10Z<p>Swapping Control and Command at the system level should already swap it in Terminal. Do you want to opt out of the system swapping?</p>
http://stackoverflow.com/questions/75533/better-terminal-in-mac-os-x-reversing-the-control-and-command-key-mappings/194426#1944262Answer by haa for Better terminal in Mac OS X -- reversing the control and command key-mappingshaa2008-10-11T18:41:49Z2008-10-11T18:41:49Z<p>You can <strong>simply ssh into the Linux/Unix system</strong> and run X11 programs direct to your Mac screen: <code>ssh -X user@host_or_ipaddress</code>, login, and just run the X11 programs you want (e.g. <code>emacs&</code>) and the X11 apps will appear on the Mac display.</p>
<p>Pros:</p>
<ul>
<li>X11 windows work just like any other window, including Exposé goodness, etc...</li>
<li>No need to work only inside the Parallels console window</li>
<li>Same solution works with any Linux/Unix system, remote or virtual</li>
<li>ssh connection is secure even over the internet</li>
</ul>
<p>Tech info:</p>
<ul>
<li>"ssh -X" turns on X11 forwarding for the ssh connection, i.e. the X11 display connection is tunneled through ssh securely</li>
<li>"ssh -X" also handles X11 authentication tunneling</li>
<li><code>X11.app</code> is automagically started on OSX by <code>launchd</code> when needed</li>
<li>X11 can connect to displays over the network, which is one of the few cool things about it ;-)</li>
</ul>
http://stackoverflow.com/questions/75533/better-terminal-in-mac-os-x-reversing-the-control-and-command-key-mappings/847431#8474310Answer by Mickey for Better terminal in Mac OS X -- reversing the control and command key-mappingsMickey2009-05-11T09:53:12Z2009-05-11T09:53:12Z<p>@Ben: yeah, the system swapping gives a natural experience for almost all apps, however it messes up the terminal.app. Is there a way to opt out for terminal.app?</p>
http://stackoverflow.com/questions/75533/better-terminal-in-mac-os-x-reversing-the-control-and-command-key-mappings/977228#9772280Answer by Brandon for Better terminal in Mac OS X -- reversing the control and command key-mappingsBrandon2009-06-10T18:00:27Z2009-06-10T18:00:27Z<p>You can customize the command keys used for an individual application in System Preferences > Keyboard & Mouse > Keyboard Shortcuts. I think (if I understand correctly what you're trying to do) that this might allow you to accomplish your goal. You could remap all of Terminal's command keys to use control instead of command, to get them out of your way... but then you might need to do a lot of customization on the machines you ssh into, so that they use Command instead of control</p>
<p>It seems that you're going to have to do an ENORMOUS amount of work just to allow you to use your pinky instead of your thumb for the modifier key. </p>
<p>Another possibility: user preferences can be manipulated by the "defaults" command. I haven't been able to find a way to use this to control they modifier key mappings, but it should logically be possible (if you're willing to do a lot of digging). If so, then you could write short scripts to switch back and forth between Mac default and your swapped mode. Trigger the scripts with Quicksilver, and whenever you use Terminal you can call one script, and whenever you leave it you can call another. Again, a big pain to achieve what you want, but it <em>might</em> be possible.</p>
<p>I don't think there's a clean and simple solution. </p>
<p>I've seen third-party programs that give more control over manipulating modifier keys, if you're willing to install them (probably kernel extensions). They <em>might</em> be able to do what you want, but I don't recall the names. If you google for programs to fix emacs and vi keys you might find them.</p>
<p>Good luck.</p>