I have infamous screen going black after 10 minutes or so despite trying several solutions to avoid it in Ubuntu 12.04
So i decided for the last solution which is emulating mouse move every 9 minutes
I've downloaded xdotool
.
My questions, and i guess they require simple answers (which are needed, because I’m not really a comp freak):
Do I have to make a script for that.
How do I make a script and where do I save it.
How to make it running automatically (every time computer starts), if that's not happening by default
So, I want to just emulate a mouse move by one pixel every 9 minutes, so that it is not disturbing and is efficient in keeping screen not going black
After googling, I tried something like this :
Creating file .noblackscreen.sh
in home directory (where documents, music... folders are);
typing in:
#!/bin/bash
while sleep 540
do
xdotool mousemove_relative 1 1
done
what do i do wrong thanx so much