如何在每个工作区上使用不同的壁纸?

我想在每个工作区上使用不同的壁纸,但以下内容不会更改背景壁纸:

有问题….左键单击​​工作区。(Ubuntu 10.04)…

startwall.sh我创建的一个文件,我在sh startwall.sh中调用了终端,我添加了启动应用程序,我运行到应用程序。但是我想在每个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 

要么

 #!/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 

您可以通过安装compiz-fusion-plugins-extra( sudo apt-get install compiz-fusion-plugins-extrasudo apt-get install compiz-fusion-plugins-extra Compiz的Wallpaper插件。 它将显示在CompizConfig设置管理器中的Utility类别下。 在此处输入图像描述

在使用它之前,您必须将Nautilus配置为不绘制桌面。 运行gconf-editor并取消选中设置/ apps / nautilus / preferences / show_desktop 。 这将使您的所有桌面图标都消失,目前还没有解决此缺点的方法。

要配置Wallpaper插件,请将图像添加到背景列表中。 它们将按列出的顺序分配给工作区。

CompizConfig