使用终端或命令行更改 Ubuntu 壁纸

使用终端或命令行更改 Ubuntu 壁纸

我正在使用带有 Gnome Shell 和 Unity 的 Ubuntu 11.10,我想知道如何更改桌面壁纸形式终端或者命令线 。

我发现了以下内容,但似乎无法让它工作,

gconftool-2 --set /apps/compiz/plugins/wallpaper/screen0/options/images --type list --list-type string "[file:/path/to/first.png:100,file:/path/to/second.png:100]"

答案1

如果我是你,我会这么做:(gsettings set org.gnome.desktop.background picture-uri file:///path/to/img.jpg来自这里

答案2

我会尝试这个:

$ gconftool-2 --type list --list-type string --set /apps/compiz/plugins/wallpaper/screen0/options/images "[file:/path/to/first.png:100,file:/path/to/second.png:100]"

它成功地为我设置了该键/值:

$ gconftool-2 -R /apps/compiz/plugins/wallpaper 
 /apps/compiz/plugins/wallpaper/screen0:
  /apps/compiz/plugins/wallpaper/screen0/options:
   bg_color2 = []
   bg_image_pos = []
   bg_fill_type = []
   images = [file:/path/to/first.png:100,file:/path/to/second.png:100]
   bg_image = []
   bg_color1 = []

相关内容