|
|

楼主 |
发表于 2004-6-1 06:13:55
|
显示全部楼层
谢谢了^_^
这个我的~/.xinitrc
--------------------------------------------------------------------------------
fcitx&
startxfce4
--------------------------------------------------------------------------------
这是我的~/.xfce4/xinintrc
--------------------------------------------------------------------------------
#!/bin/sh
# fix broken $UID on some system...
if test "x$UID" = "x"; then
UID=`id -u`
fi
# Launch xscreensaver (if available), but only as non-root user
test $UID -gt 0 && xscreensaver -no-splash &
# or use old-fashioned startup script otherwise
xfce-mcs-manager
xfwm4 --daemon
if test -f $HOME/.Xmodmap; then
xmodmap $HOME/.Xmodmap
fi
xftaskbar4 &
xfdesktop &
panel=/usr/bin/xfce4-panel
case "x$panel" in
x|xno*)
;;
*)
$panel
ret=$?
while test $ret -ne 0; do
xmessage -center -file - -timeout 20 -title Error <<EOF
A crash occured in the panel
Please report this to the xfce4-dev@moongroup.com list
Meanwhile the panel will be restarted
EOF
cat >&2 <<EOF
A crash occured in the panel
Please report this to the xfce4-dev@moongroup.com list
Meanwhile the panel will be restarted
EOF
$panel
ret=$?
done
;;
esac
-------------------------------------------------------------------------------- |
|