X Configuration for English/LyX keyboard + Compose Key

2010-06-25 Thread Shlomi Fish
Hi all! How do I set the X configuration in the following script: [code] #!/bin/sh setxkbmap \ -option compose:ralt,grp:switch,grp:alt_shift_toggle,grp_led:scroll \ -variant ,lyx \ 'us,il' [/code] Into Xkb map in /etc/X11/xorg.conf. So far I have this, but it doesn't handle the

Re: X Configuration for English/LyX keyboard + Compose Key

2010-06-25 Thread Tzafrir Cohen
On Fri, Jun 25, 2010 at 06:17:50PM +0300, Shlomi Fish wrote: Hi all! How do I set the X configuration in the following script: -option does not set options. It adds options. To reset the options: -options '' Thus: [code] #!/bin/sh setxkbmap \ -option '' \ -option

Re: X Configuration for English/LyX keyboard + Compose Key

2010-06-25 Thread Shlomi Fish
Hi Tzafrir, thanks for your help. See below for my response. On Saturday 26 Jun 2010 05:07:24 Tzafrir Cohen wrote: On Fri, Jun 25, 2010 at 06:17:50PM +0300, Shlomi Fish wrote: Hi all! How do I set the X configuration in the following script: -option does not set options. It adds options.