Linux
OpenSUSE 中的 OpenBox 自動啟動?
如何在 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 &
我沒有找到解決方案,但一個快速的解決方法是在開機時啟動 openbox-session。我在我的主文件夾中創建了文件 .xinitrc 並將 exec openbox-session 添加到該文件中。這使得核心在開機時載入 openbox-session,然後載入 openbox 並執行 ~/.config/openbox 中的自動啟動文件。但是,對我來說,開機時如何載入 openbox 仍然是個謎。我查看了 /etc/sysconfig/displaymanager 和 ~/.cache/session 但我找不到它。我希望它不會被我的 .xinitrc 解決方法載入兩次。這種解決方法對我有用。