|
这个是我的/usr/bin/startxce4
#!/bin/sh
#
# xfce4
#
# Copyright (C) 1996-2003 Olivier Fourdan ([email protected])
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
LC_ALL=zh_CN.GB18030
LC_CTYPE=zh_CN.GB18030
XMODIFIERS="@im=rfinput"
XIM=rfinput
XIM_PROGRAM=rfinput
export LC_CTYPE XMODIFIERS XIM XIM_PROGRAM
if [ ! -d $HOME/.xfce4/ ]; then
mkdir $HOME/.xfce4/
mkdir $HOME/.xfce4/settings/
mkdir $HOME/.xfce4/xffm/
fi
if test x"$DISPLAY" = x""
then
echo "$0: Starting X server"
if [ -x $HOME/.xfce4/xinitrc ]; then
exec xinit $HOME/.xfce4/xinitrc $*
else
exec xinit /etc/xfce4/xinitrc $*
fi
else
echo "$0: X server already running on display $DISPLAY"
if [ -x $HOME/.xfce4/xinitrc ]; then
exec /bin/sh $HOME/.xfce4/xinitrc $*
else
exec /bin/sh /etc/xfce4/xinitrc $*
fi
fi
# run all system xinitrc shell scripts.
for i in /etc/X11/xinit/xinitrc.d/* ; do
if [ -x "$i" ]; then
. "$i"
fi
done
结果我的xfce变成了英文的,而且也调不出输入法。
为什么那?
附原帖子地址
http://www.linuxfans.org/nuke/modules.php?name=Forums&file=viewtopic&t=40044&highlight= |
|