I do not have the issue in XFCE.
All the following commands can be run from a Terminal, like for instance gnome-terminal. You can easily select and copy a command from this page, then paste it in a terminal, and hit enter.
I have a sudo setup on LMDE, if you have an su setup like on standard Debian, use:
- Code: Select all
su -
...and enter the root password, and commands.
But we will continue with the sudo version:
To stop the screen from blanking you have to pass some configuration parameters to the X server.
In a terminal, run:
- Code: Select all
sudo mkdir -pv /etc/X11/xorg.conf.d
Then create a new config file:
- Code: Select all
sudo gedit /etc/X11/xorg.conf.d/01-disable-screen-blanking.conf
Copy/paste the following code and save the file:
- Code: Select all
Section "ServerFlags"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
EndSection
Close your applications and restart the X server with Ctrl+Alt+Backspace, or simply log out nad log back in again.





