2:登录root时的红色背景的解决。
编辑/etc/X11/Xsession
找到如下句子
# Mandrake default background
if [ "`whoami`" = root ]; then
xsetroot -solid "#B20003" --->修改这里,改成#21449C,就ok了。 。
IS_ROOT=1
else
IS_ROOT=
# Load the color only when not called from gdm/kdm
if [ -z "$1" ]; then
xsetroot -solid "#21449C"
fi
fi
2:登录root时的红色背景的解决。
编辑/etc/X11/Xsession
找到如下句子
# Mandrake default background
if [ "`whoami`" = root ]; then
xsetroot -solid "#B20003" --->修改这里,改成#21449C,就ok了。 。
IS_ROOT=1
else
IS_ROOT=
# Load the color only when not called from gdm/kdm
if [ -z "$1" ]; then
xsetroot -solid "#21449C"
fi
fi