Screen saver function on Buster
- mariusl
- Topic Author
- Offline
- Platinum Member
I am looking for a way to permanently disable the screen saver function on Buster. I am running the latest ISO with 2.8.2.
I tried xset but it seems the settings are only valid for the current session. After reboot the screen saver is on again.
Regards
Marius
www.bluearccnc.com
Please Log in or Create an account to join the conversation.
- robertspark
- Offline
- Platinum Member
- Posts: 915
- Thank you received: 216
Please Log in or Create an account to join the conversation.
- tatel
- Offline
- Junior Member
- Posts: 39
- Thank you received: 16
AFAIK, latest 2.8.2 ISO doesn't install any screensaver. Do you mean screen blanking? This is what I do:Hi
I am looking for a way to permanently disable the screen saver function on Buster. I am running the latest ISO with 2.8.2.
I tried xset but it seems the settings are only valid for the current session. After reboot the screen saver is on again.
1- Create a file /etc/X11/xorg.conf.d/10-noblanking.conf (what matters most is the .conf extension, perhaps initial number also) and put this lines on it:
Section "ServerFlags"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
Section "Extensions"
Option "DPMS" "Disable"
EndSection
Save changes and exit from text editor, then :
2- Got to Apps menú -> Configuration -> Session Startup. Look for App auto startup. Uncheck light-locker (screen locker, who compels you to give your password to unlock the blank screen)
Done. Your screen will never get blank again and you'll be never asked for any password to unlock the screen. Perhaps I'm not using the correct menu designations, but my desktop is not in english. Not need to install anything. Actually, on 2.7.15 I uninstall xfce4-power-manager, I just don't want it messing with anything.
HTH
Please Log in or Create an account to join the conversation.
- mariusl
- Topic Author
- Offline
- Platinum Member
Regards
Marius
www.bluearccnc.com
Please Log in or Create an account to join the conversation.
- mariusl
- Topic Author
- Offline
- Platinum Member
locker (screen locker, who compels you to give your password to unlock the blank screen)
Done. Your screen will never get blank again and you'll be never asked for any password to unlock the screen. Perhaps I'm not using the correct menu designations, but my desktop is not in english. Not need to install anything. Actually, on 2.7.15 I uninstall xfce4-power-manager, I just don't want it messing with anything.
HTH
Do you know that xfce4-power-manager causes issues or are you just precautious?
Regards
Marius
www.bluearccnc.com
Please Log in or Create an account to join the conversation.
- elf
- Offline
- Junior Member
- Posts: 32
- Thank you received: 14
Please Log in or Create an account to join the conversation.
- JPL
- Offline
- Platinum Member
- Posts: 335
- Thank you received: 113
There: manpages.debian.org/buster/xserver-xorg-.../xorg.conf.5.en.htmlAre these settings documented somewhere?
And there: manpages.ubuntu.com/manpages/trusty/man5...erverflags%20section
Please Log in or Create an account to join the conversation.