You are not logged in.
Pages: 1
Hello,
My at symbol turns out as "
My GBP symbol turns out as #
How do I fix the character encoding? I already have it set to UK.
Thanks.
Last edited by RAH (2008-06-23 16:23:23)
Offline
Hello,
My at symbol turns out as "
My GBP symbol turns out as #How do I fix the character encoding? I already have it set to UK.
Thanks.
Keyboard layout?
Try this in xorg.conf:
Section "InputDevice"
Identifier <fill in yours>
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "uk"
EndSection
Maybe it neads a little tweaking for you.
Offline
That fixed the @ issue but the GBP symbol is now coming out as 3.
Offline
What is GBP?
Offline
What is GBP?
Great British Pounds - Pound Sterling - £
Offline
test the conf with a "gb" instead of "uk" in XkbLayout
dovie andi se tovya sagain
Offline
That fixed the @ issue but the GBP symbol is now coming out as 3.
You need to run
xmodmap -pke >.xmodmaprc
Next edit .xmodmaprc and delete everything but the line
keycode 12=3
and edit this line to read
keycode 12=3 sterling
Now you run
xmodmap .xmodmaprc
Of course, you should set this to autorun but I think the way of doing this depends on the DE/WM you are using.
Offline
I know this thread is a couple of months old but for the sake of those searching in the future, I've just discovered that xmodmap isn't needed.
Edit /etc/X11/xorg.conf
In
Section "InputDevice"
Identifier "Keyboard0" # or "Keyboard1", etc
Driver "kbd" # not "keyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "gb" # not "uk"
I knew that, back in XFree86 days, "uk" was a Ukrainian keyboard and "gb" the British one. I wrongly assumed that this had changed.
Offline
Pages: 1