sudo nano /etc/kbd/config
BLANK_TIME=0 (Was 30)
POWERDOWN_TIME=0 (I think it was 15)
That method only works for the console, it won't stop desktop blanking
sudo nano /etc/xdg/lxsession/LXDE/autostart
@xset s noblank
@xset s off
@xset -dpms
That method is outdated, it hasn't used the /LXDE/ directory in quite a while.
sudo nano /etc/xdg/lxsession/LXDE-pi/autostart
@xset s noblank
@xset s off
@xset -dpms
That's the global autostart, that won't work with Jessie since Jessie now provides a user autostart at "~/,config/lxsession/LXDE-pi/autostart", which takes precedence over the global autostart. So make changes in the user autostart instead.
sudo nano /etc/lightdm/lightdm.conf
xserver-command=X -s 0 -dpms
That one works and is the method I use. But you have to add the line under the section "[SeatDefaults]" for it to work.
Is this really so complicated to do such stupid thing
The first method is console only, the next two methods didn't work because they're outdated, but obviously still out there on the internet. When looking for info on the web, for how to do something, always check to see how current it is. If it's a year or a few old and it doesn't work then it's probably outdated info.
The last method works, and you hit the target, but didn't quite hit the bullseye.
