Alterando o papel de parede do Ubuntu usando o terminal ou da linha de comando

1

Estou usando o Ubuntu 11.10 com o Gnome Shell e a unidade e queria saber como alterar a linha papel de parede da área de trabalho terminal ou comando .

Eu encontrei o seguinte, mas não consigo fazer isso funcionar,

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]"
    
por Gautam 17.03.2011 / 03:43

2 respostas

1

Eu faria isso se fosse você: gsettings set org.gnome.desktop.background picture-uri file:///path/to/img.jpg (dica de aqui )

    
por 05.04.2012 / 23:26
1

Eu tentaria isso:

$ 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]"

Define com sucesso essa chave / valor para mim:

$ 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 = []
    
por 17.03.2011 / 04:42