|
发表于 2005-4-2 14:30:15
|
显示全部楼层
我现在知道为什么/usr/X11R6/lib/X11/xinit/.Xresources里的设置对楼上兄弟不起作用了,因为你的xinitrc是自己建立的,跟slackware默认的不一样:
#/etc/X11/xinit/xinitrc.blackbox
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
#输入法启动命令是本人后加的
export XMODIFIERS="@im=fcitx"
fcitx&
export G_FILENAME_ENCODING="@locale"
# Start the window manager:
exec /usr/X11R6/bin/blackbox |
|