You are not logged in.
I'm currently using the "us" keyboard, but I'd like to use accents the way I'm used to in Windows with the "US International" layout, i.e. press ' then e which gives me an accented e.
I used to use the "us_intl" layout in xorg.conf, but somehow when I do that my deadkeys (Winkey, etc) stop working. Even when I use the deadkeys-option.
How do I use both?
A bus station is where a bus stops.
A train station is where a train stops.
On my desk I have a workstation.
Offline
Well I'm using the xorg from current, not the 7, and I have a similar problem. After changing us to cf I can use all the accents but the alt key is not functional anymore. Wonder if it's related. When I do setxkbmap "ca_enhanced) in a terminal it fixes the problem.
Offline
I don't know how you switch keyboard but here's how I do it. I have an entry in my menu that runs the following script:
#!/bin/bash
KBD1=us
KBD2=ca_enhanced
if setxkbmap -print|grep -q $KBD1
then
setxkbmap $KBD2
else
setxkbmap $KBD1
fi
Each time it's executed, it will switch the keyboard to the other layout. I use xorg in current.
HTH
Offline