Larry Nguyen <[EMAIL PROTECTED]> writes:
> We have a Vietnamese input method program (xvnkb) that will allow us
> to type .....Vietnamese (duh!) in X. The author of this program
> complains Mandrake Xsession is a litto unusual. Please see below for
> his comments. If this is true, please fix it for the future
> release. Please note (1) and (2).
This is not the method used to configure an input method in Mandrake
Linux. You must configure your input method in ~/.i18n or system wide
in /etc/sysconfig/i18n with the XIM and XIM_PROGRAM variables.
> Merci.
>
> -Larry
>
>
> * From Virgin XFree's Xsession script:
>
> # run all system xinitrc shell scripts.
> for i in /etc/X11/xinit/xinitrc.d/* ; do
> if [ -x "$i" ]; then
> . "$i" <====== mean include (1)
> fi
> done
>
> * From MD's XFree's Xsession script (8.2 & 9.0):
>
> # run scripts in /etc/X11/xinit.d
> for i in /etc/X11/xinit.d/* ; do
> [ -d $i ] && continue
> # Don't run ??foo.{rpmsave,rpmorig,rpmnew} scripts
> [ "${i%.rpmsave}" != "${i}" ] && continue
> [ "${i%.rpmorig}" != "${i}" ] && continue
> [ "${i%.rpmnew}" != "${i}" ] && continue
>
> if [ -x $i ]; then
> $i & <====== mean execute (2)
> fi
> done
>
>
--
Fred - May the source be with you