5

I am using a Raspberry Pi connected to a TV (monitor) to show some information; it is inactive most of the time. My problem is that the screen turns off every five minutes.

This is what I tried with no success:

  1. Set blank time and power down time as follows in /etc/kbd/config

    BLANK_TIME=0
    POWERDOWN_TIME=0

  2. Added these lines to /etc/xdg/lxsession/LXDE/autostart

    @xset s noblank
    @xset s off
    @xset -dpms

  3. Added these lines to /etc/xdg/lxsession/LXDE/autostart

    xset s off
    xset -dpms
    xset s noblank

Any idea on how can I solve this?

Jacobm001
  • 11,904
  • 7
  • 47
  • 58
cventu
  • 153
  • 4

1 Answers1

4

Paths seem to have changed in the Jessie Raspbian.

Try putting the

@xset s noblank
@xset s off
@xset -dpms

lines in the ~/.config/lxsession/LXDE-pi/autostart file not the LXDE/autostart

rob
  • 2,813
  • 4
  • 22
  • 31