为什么我的openbox窗口边框很粗,字体很大呢?

各种窗口管理器和美化相关
回复
zjy3186511
帖子: 312
注册时间: 2010-02-01 19:24

为什么我的openbox窗口边框很粗,字体很大呢?

#1

帖子 zjy3186511 » 2011-03-17 14:31

截图就不截了..就是显示的边框过大,字体也很大,,感觉就是分辨率有点小的感觉..
原来在网上搜过解决办法.就是吧/etc/xdg/openbox/autostart.sh
中的

代码: 全选

# This shell script is run before Openbox launches.
# Environment variables set here are passed to the Openbox session.

# Set a background color
BG=”"
if which hsetroot >/dev/null 2>&1; then
BG=hsetroot
else
if which esetroot >/dev/null 2>&1; then
BG=esetroot
else
if which xsetroot >/dev/null 2>&1; then
BG=xsetroot
fi
fi
fi
test -z $BG || $BG -solid “#303030″

# D-bus
if which dbus-launch >/dev/null 2>&1 && test -z “$DBUS_SESSION_BUS_ADDRESS”; then
eval `dbus-launch –sh-syntax –exit-with-session`
fi

# Make GTK apps look and behave how they were set up in the gnome config tools
if test -x /usr/libexec/gnome-settings-daemon >/dev/null; then
/usr/libexec/gnome-settings-daemon &
elif which gnome-settings-daemon >/dev/null 2>&1; then
gnome-settings-daemon &
# Make GTK apps look and behave how they were set up in the XFCE config tools
elif which xfce-mcs-manager >/dev/null 2>&1; then
xfce-mcs-manager n &
fi

# Preload stuff for KDE apps
if which start_kdeinit >/dev/null 2>&1; then
LD_BIND_NOW=true start_kdeinit –new-startup +kcminit_startup &
fi

# Run XDG autostart things. By default don’t run anything desktop-specific
# See xdg-autostart –help more info
DESKTOP_ENV=”OPENBOX”
if which /usr/lib/openbox/xdg-autostart >/dev/null 2>&1; then
/usr/lib/openbox/xdg-autostart $DESKTOP_ENV
fi
复制到~/.config/openbox/autostart.sh里边..原来倒是可以了..现在不知道为什么第一次开机的时候总是失效,,需要注销一次之后才好.

这是为什么呢?另外,这个解决方法对么?还有就是这些代码是什么意思呢? :em06
archlinux + openbox

个人blog: http://www.lifeintheweb.tk
回复