@haresear, I bet even money that that is screen-blanking kicking in, which can be a pain to disable. Try this though... for your current session, copy/paste these commands one at a time in a terminal...
Code:
xset -dpms
xset s noblank
xset s off
If that works and you want it to persist on reboot, you'll need to create/modify the file /etc/X11/xorg.conf. If you don't have the file create it and add the following, if you do have that file add the following under Section "Monitor", leaving out the Section "Monitor" and EndSection lines...
Code:
Section "Monitor"
Option "NODPMS"
EndSection
Reboot and see if it works. If not, try these lines, again leaving out the Section/EndSection lines if you already have those sections and rebooting afterwards...
Code:
Section "Monitor"
Option "DPMS"
EndSection
Section "ServerLayout"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
Bookmarks