Rolf, I would say configuration is a separate issue. The bug described
here is about the ~ path not getting expanded correctly.
--
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in Ubuntu.
https://bugs.launchpad.net/bu
I don't know how to make a patch but if you change this "if" statement
around line 100 in savers/slideshow.c from
if (location != NULL) {
g_object_set (engine, "images-location", location, NULL);
}
to something like
if (location != NULL) {
wordexp_t expanded_location;
wordexp(locatio