web-dev-qa-db-ja.com

各ワークスペースで異なる壁紙を使用するにはどうすればよいですか?

各ワークスペースで異なる壁紙を使用したいのですが、以下は背景の壁紙を変更しません:

問題があります....左から右へ、ワークスペースをクリックします。(Ubuntu 10.04)...

startwall.shで作成したファイルで、sh startwall.shでTerminalを呼び出し、Startup Applicationを追加し、applicatiionにRunを追加しましたが、各Workshapesで常に自動バックグラウンドとして再生したいです。

           Code:
#!/bin/bash     
ws=$(wmctrl -d | wc -l)
cws=$(wmctrl -d | awk '/*/    {print $1}')   
lws=$(($cws-1))
if [ $lws = -1 ]; then
    lws=$(($ws-1)) 

    gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/b.jpg"; 
else
    gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/q.jpg
fi

OR

#!/bin/bash

#  ws=$(wmctrl -d | wc -l)
cws=$(wmctrl -d | awk '/\*/ {print $1}')
if [ $cws = 0 ]; then
    wmctrl -s $cws
    gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/b.jpg"
else
    gconftool -t string -s /desktop/gnome/background/picture_filename "/root/Desktop/wall/q.jpg"
fi
2
erkan şentürk

Compiz-fusion-plugins-extra(Sudo apt-get install compiz-fusion-plugins-extra)。 CompizConfig Settings ManagerのUtilityカテゴリの下に表示されます。 enter image description here

使用する前に、デスクトップを描画しないようにNautilusを構成する必要があります。実行gconf-editorと設定のチェックを外します/ apps/nautilus/preferences/show_desktop。これにより、すべてのデスクトップアイコンが表示されなくなり、現時点ではこの欠点に対する解決策はありません。

壁紙プラグインを設定するには、背景のリストに画像を追加します。これらは、リストされている順序でワークスペースに割り当てられます。

CompizConfig

0
paru38