Debian

Openbox 未正確載入

  • August 21, 2013

我在 Crunchbang 11、64 位,它是一個 Debian Wheezy 發行版。

今天早上 Openbox 沒有正確載入

   連結到螢幕截圖

  • 所有程序和快捷方式都正常工作。Conky 正在正確載入。
  • 桌面桌面未載入
  • 頂部的菜單沒有載入,所以如果我最小化一個程序,我將無法知道它在哪裡。

這裡是autostart,Openbox 版本 3.5.0-7,顯示管理器是slim. 這是slim.log

在你~/.config/openbox/autostart有以下幾行。

## Group start:
## 1. nitrogen - restores wallpaper
## 2. compositor - start
## 3. sleep - give compositor time to start
## 4. tint2 panel
(\
nitrogen --restore && \
cb-compositor --start && \
sleep 2s && \
tint2 \
) &

這部分很可能是您的問題的原因。

nitrogen負責你的背景, cb-compositor啟動康普頓合成器, tint2是你的工作列。

上面的腳本首先執行nitrogen以恢復以前的背景。如果此命令失敗,則它不會執行腳本的其餘部分,此行為是由&&.

由於您說您的背景未設置,因此錯誤可能是由nitrogen.

nitrogen您可以通過從autostart文件中刪除來測試這一點。

像這樣

(\
#nitrogen --restore &&
cb-compositor --start && \
sleep 2s && \
tint2 \
) &

然後你需要重新登錄。

如果你想要背景,那麼你需要找出問題所在nitrogen。我的瘋狂猜測是它找不到背景圖片或類似的東西。

引用自:https://unix.stackexchange.com/questions/87619