Info find by Google:
http://kost.com.hr/blog/index.php?title ... &tb=1&pb=1
I'll give few tips (and no tricks) for beginners with ASUS EEE in Croatia.
Probably you noticed that you cannot select Croatian keyboard layout. What you need to do is edit /etc/X11/xorg.conf
sudo kedit /etc/X11/xorg.conf
and find following line:
Option "XkbLayout" "us"
And change it to (for Croatian keyboard):
Option "XkbLayout" "hr"
Optionally, you can change it to (if you want Croatian letters on AltGr):
Option "XkbLayout" "hr(us)"
If you want to change keyboard layout on the fly, open terminal (ctrl+alt+t) and type following (if you need to change to Croatian layout):
setxkbmap hr
Also, if you want Croatian letters on AltGr, you need to type:
setxkbmap hr us
If you want to switch back to US keyboard layout, type following:
setxkbmap us
Comment from: Nikola Gotovac [Visitor]
I have changed keyboard settings from Settings tab using Personalization tool, before editing xorg.conf file, so I had to select English/US keyboard and then edit xorg.conf lines to look like this:
Option "XkbLayout" "hr" Option "XkbModel" ""
After that it worked as Kost said.