Page 1 of 1

SOLVED - Screensavers

Posted: 17. Jun 2011, 01:56
by macondo
I want to remove all screensavers, but i can't find them, thanks

Re: Screensavers

Posted: 17. Jun 2011, 03:19
by dab1414
In terminal you can

Code: Select all

xscreensaver
to edit your screensaver settings.

Or to remove completely they are here.
/usr/share/xscreensaver
at least in my fluxbox and lxde.

EDIT: well if xscreensaver is already running you can

Code: Select all

xscreensaver-command -prefs
to get to it as well.

Re: Screensavers

Posted: 17. Jun 2011, 06:25
by Akuna
To locate the screensaver package you could try:

Code: Select all

$ ls /var/log/packages/ | grep screensaver
which in my case gives:

Code: Select all

xscreensaver-5.12-x86_64-1
then you could remove the package itself:

Code: Select all

# removepkg xscreensaver
Or else use Gslapt to remove the package, whichever.

Re: Screensavers

Posted: 17. Jun 2011, 07:43
by thenktor
dab1414 wrote:EDIT: well if xscreensaver is already running you can

Code: Select all

xscreensaver-command -prefs
to get to it as well.
xscreensaver-demo should open the screensaver preferences, too.

Re: Screensavers

Posted: 17. Jun 2011, 13:52
by macondo
Thank you gents, as root i launched pcmanfm and went to /usr/share/xscreensaver and deleted the file :)

Re: Screensavers

Posted: 17. Jun 2011, 15:10
by thenktor
macondo wrote:Thank you gents, as root i launched pcmanfm and went to /usr/share/xscreensaver and deleted the file :)
Bad idea! Use spkg -d xscreensaver instead. This is why we have package managers ;)

Re: Screensavers

Posted: 17. Jun 2011, 16:32
by macondo
thenktor wrote:
Bad idea! Use spkg -d xscreensaver instead. This is why we have package managers ;)
I'll keep in mind for next time, thanks again :)

Re: Screensavers

Posted: 17. Jun 2011, 17:29
by thenktor
You should still run that command because xscreensaver has more file than the single one you've deleted.

Re: Screensavers

Posted: 18. Jun 2011, 14:14
by macondo
OK, will do it.