Webconverger / webc

Webconverger's curated chroot from which updates originate
https://webconverger.org/upgrade/
73 stars 37 forks source link

xkb= can't deal with complex cases #25

Closed kaihendry closed 12 years ago

kaihendry commented 12 years ago

https://github.com/Webconverger/webc/blob/master/home/webc/.xinitrc#L56 -layout "us, th" -option "grp:shift_toggle"

I think it needs to parsed in to a array and rebuilt http://mywiki.wooledge.org/BashFAQ/050

kaihendry commented 12 years ago

Work around is to not use quotes

patrickhaller commented 12 years ago

On 2012-04-21 06:29, Kai Hendry wrote:

https://github.com/Webconverger/webc/blob/master/home/webc/.xinitrc#L56 -layout "us, th" -option "grp:shift_toggle"

Why doesn't that work? We just decode and pass to xkb.

kaihendry commented 12 years ago

Be good to have some tests around this. It works without putting in the quotes which as you point should be encoded like:

"-layout%20%22us,%20th%22%20-option%20%22grp:shift_toggle%22"

We should re-visit this with some more testing.