如何以 shellscript 形式在不同的工作区中添加不同的壁纸?

如何以 shellscript 形式在不同的工作区中添加不同的壁纸?

我想在不同的工作区添加不同的壁纸,但需要命令行..

答案1

使用出色的链接问答设置您的环境

  • 安装 compiz:sudo apt-get install compiz-fusion-plugins-extra
  • 删除桌面图标:gconftool-2 --set "/apps/nautilus/preferences/show_desktop" --type=boolean "true"

您的壁纸在键中定义:

gconftool-2 --get "/apps/compiz/plugins/wallpaper/screen0/options/bg_image"

它采用逗号分隔的列表,因此您可以使用以下示例设置值:

gconftool-2 --set "/apps/compiz/plugins/wallpaper/screen0/options/bg_image" --type=string "[/usr/share/backgrounds/BosqueTK.jpg,/usr/share/backgrounds/BusquedaNocturna.jpg]"

相关问题:

  1. 使用 Compiz 的工作区特定壁纸?

相关内容