如何在 OpenBox 中使用自动启动(在 OpenSUSE 中)?之前 xfce 是首先安装运行的。
我已经添加了
xfce4-panel &
进去autostart
却无济于事/etc/xdg/openbox/
。autostart
~/.config/openbox/
xfce4-panel &
来自终端工程。我的自动启动看起来像这样:
#
# These things are run when an Openbox X Session is started.
# You may place a similar script in $HOME/.config/openbox/autostart
# to run user-specific things.
#
# If you want to use GNOME config tools...
#
#if test -x /usr/lib/gnome-settings-daemon >/dev/null; then
# /usr/lib/gnome-settings-daemon &
#elif which gnome-settings-daemon >/dev/null; then
# gnome-settings-daemon &
#fi
# If you want to use XFCE config tools...
#
#xfce-mcs-manager &
xfce4-panel &
答案1
我没有找到解决方案,但一个快速的解决方法是在开机时启动 openbox-session 。我在我的主文件夹中创建了文件 .xinitrc 并将 exec openbox-session 添加到该文件中。这使得内核在开机时加载 openbox-session,然后 openbox 加载并执行 ~/.config/openbox 中的自动启动文件。然而,对我来说,开机时 openbox 是如何加载的仍然是个谜。我查看了 /etc/sysconfig/displaymanager 和 ~/.cache/session 但找不到它。我希望我的 .xinitrc 解决方法不会加载两次。这个解决方法对我有用。