On Thu, Feb 9, 2023 at 10:20 AM Tormod Volden wrote: > Would it be possible for you to build the upstream sources, without > optimization, and try it out? You shouldn't need to install any of it, > just run driver/xscreensaver-settings --debug from the build tree. And > also rename your ~/.xscreensaver so that it runs with default > settings.
Now it gets a bit complicated if we don't want to install it, but at the same time let the built xscreensaver-settings find the screensavers from the already installed Debian packages, we need to set the exec-prefix. In this case do not run make install afterwards! >From unpacked upstream sources: ./configure CFLAGS="-g -O0" --exec-prefix=/usr make -j4 driver/xscreensaver-settings --debug Tormod