Skip to content

Instantly share code, notes, and snippets.

@fyrz
Last active April 12, 2019 13:14
Show Gist options
  • Save fyrz/6d364d830c788a263ecd to your computer and use it in GitHub Desktop.
Save fyrz/6d364d830c788a263ecd to your computer and use it in GitHub Desktop.
Raspberry PI - Disable Screensaver in Raspbian

Raspberry PI - Disable Screensaver in Raspbian

Install xutils

sudo apt-get install xutils

Contents in /etc/xdg/lxsession/LXDE/autostart

Disable any previously listed commands and add the xset commands below

#@lxpanel --profile LXDE
#@pcmanfm --desktop --profile LXDE

@xset s off
@xset -dpms
@xset s noblank
@mgafner
Copy link

mgafner commented Jun 28, 2016

vi /etc/lightdm/lightdm.conf

[SeatDefaults]
xserver-command=X -s 0 -dpms

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment