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

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

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

有问题....单击工作区时左右移动。(Ubuntu 10.04)...

startwall.sh 是我创建的一个文件,我在 sh startwall.sh 中调用了终端,添加了启动应用程序,并已运行到应用程序。但我想在每个工作形状上始终作为自动背景播放。

           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

答案1

您可以通过安装 compiz-fusion-plugins-extra ( ) 来获取 Compiz 的壁纸插件sudo apt-get install compiz-fusion-plugins-extra。它将显示在 CompizConfig 设置管理器中的实用程序类别下。 在此处输入图片描述

在使用它之前,你必须将 Nautilus 配置为不绘制桌面。运行gconf-editor并取消选中设置/应用程序/nautilus/首选项/show_desktop.这将使你所有的桌面图标都消失,目前还没有办法解决这个缺点。

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

Compiz配置

相关内容