When I choose Swedish keyboard on boot screen from live usb, lxqt 64 bit will start with us keyboard. No big deal but anyway wrong. It works with xfce 64 bit.
If this is with the new release, this belongs in the Bug forum for the new release. Let me know aand I will move it.
greetz
devil
Yes devil, it's the new release
Hm, it seems it was already in the right place and I was puzzled :)
greetz
devil
vilde: sorry should not be - will have a look at it
-----
urgs - you choose swedish keyboard and the rest english?
I also checked to choose some other keyboard layout on boot screen, same result, it was the standard us-english when in x.
you should try swedish language - some shortcoming, because the intl part is not handled well as can be in LXQt
@melmarker Thanks, but I didn't install it and I don't need help with this. It'd just tried the live version and found this fault and reported it.
Or do I misunderstand you, do you want me to test something?
you misunderstood - i tie the keyboard settings for lxqt to the choosen language, because the real lxqt config for keyboards is not complete. it looks like that:
17 case $LANG in
18 de_DE.utf8)
19 sed -i "s/model=.*/model=${XKBMODEL}/" /etc/skel/.config/qxkb.cfg;
20 sed -i 's/layout=.*/layout="de,us"/' /etc/skel/.config/qxkb.cfg;
21 sed -i 's/variant=.*/variant="nodeadkeys,,,"/' /etc/skel/.config/qxkb.cfg;
22 ;;
23 en_US.utf8)
24 sed -i "s/model=.*/model=${XKBMODEL}/" /etc/skel/.config/qxkb.cfg;
25 sed -i 's/layout=.*/layout="us,de"/' /etc/skel/.config/qxkb.cfg;
26 sed -i 's/variant=.*/variant=",nodeadkeys,,"/' /etc/skel/.config/qxkb.cfg;
27 ;;
28 *)
29 QXLANG=${LANG:0:2}
30 sed -i "s/model=.*/model=${XKBMODEL}/" /etc/skel/.config/qxkb.cfg;
31 sed -i "s/layout=.*/layout=\"${QXLANG},us,de\"/" /etc/skel/.config/qxkb.cfg;
32 sed -i 's/variant=.*/variant=",nodeadkeys,,"/' /etc/skel/.config/qxkb.cfg;
33 ;;
34 esac
So i think your usecase is not implemented yet.
Ok, thanks, now I understand. :)