Problem: native applications under OS X use the Command key for keyboard shortcuts, while X11 applications use the Control key. This is confusing and avoids effective use of X11 apps.
Solution: place the following lines inside the file .Xmodmap in your user's folder (at the top level):
! ~/.Xmodmap
clear Mod2
clear control
keycode 63 = Control_L
keycode 67 = Control_L
add control = Control_L
This will change the keyboard mapping under X11, such that the Command key acts like the Control key, so you will be able to use either the Command key or the Control key within X11 apps for shortcuts. More details can be found in this article.
Mac OS X Hints
http://hints.macworld.com/article.php?story=20070206110939423