Hi,
I got the us international settings from another distro that has a gnome tool that allows the user to
change the keyboard settings. The parameter to change is
Option "Xkbvariant" "intl" ## KEYBOARD_VARIANT!
My keyboard section now looks like
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "us" ## KEYBOARD_MAP!
Option "XkbModel" "pc105" ## KEYBOARD_MODEL!
Option "XKbOptions" "grp:switch,grp:alt_shift_toggle,grp_led:scroll"
Option "Xkbvariant" "intl" ## KEYBOARD_VARIANT!
EndSection
The XkbOptions line is probably not needed. Orignially, I was using it to toggle the keyboard settings
by pressing shift and alt simultaneously. Now it seems to switch between needing to use the function
key to access special characters or always having them on.
In any event, I got the äåé®þüúíóö that I wanted.
Update:
Having us_intl as the default keyboard can be a nuisance when typing a lot of English text. I solved
the problem by switching from us_regular and us_international as follows:
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
#Option "XkbLayout" "us" ## KEYBOARD_MAP!
Option "XkbLayout" "us,us" ## KEYBOARD_MAP!
Option "XkbModel" "pc105" ## KEYBOARD_MODEL!
Option "Xkbvariant" ",intl" ## KEYBOARD_VARIANT!
Option "XKbOptions" "grp:switch,grp:alt_shift_toggle,grp_led:scroll"
EndSection
Note that there are TWO entries for keyboard layout and that Kbvariant has a comma before intl
This setup allows me to switch back and forth between the two types easily.
See this for more customization tips:
http://www.x.org/archive/X11R6.8.1/PDF/XKB-Config.pdf