0

How can i update the screensaver theme?

I am using:

$sudo gconftool-2 -t --list-type string --set /apps/gnome-screensaver/themes [screensavers-xyz]

But it doesn't seem to work. I get an error saying "Don't understand type '--list-type"

Isxek
  • 3,965
Wasi
  • 125

1 Answers1

1

As per the manual, try adding a data type after -t as well, like this:

gconftool-2 --type list --list-type string --set /apps/gnome-screensaver/themes '[screensavers-xyz]'

For example, something like:

gconftool-2 --type list --list-type string --set /apps/gnome-screensaver/themes '[screensavers-personal-slideshow]'

or

gconftool-2 --type list --list-type string --set /apps/gnome-screensaver/themes '[screensavers-cosmos-slideshow]'

Karan
  • 57,289