Set screen sleep

The tutorial mainly introduces how to set the screen to stay on. If the Raspberry Pi system has the screen off turned on, the default is to automatically turn off the screen after 10 minutes of no operation.

Environment

System: Raspberry Pi OS

Graphical interface

Turn on automatic screen blanking: applications menu → Preferences → Raspberry Pi Configuration

image-20231211150928401

Display → Screen Blanking: Enable (if you need to turn off the screen blanking, just turn off the switch)

image-20231211151208514

Command line

Use raspi-config tool to automatically blank the screen: Display Options → Screen Blanking: enable

Reboot

The modified configuration takes effect after reboot!

Idea 2

You can use xservice to configure the lightdm desktop display manager to achieve the purpose of keeping the screen on.

Configuration file modification

lightdm.conf file location: /etc/lightdm

Uncomment the # in the file xserver-command=X and change it to xserver-command=X -s 0-dpms. After the modification is completed.

Save and exit the nano editor: press Ctrl+X, enter y, and then press Enter.

image-20231218193417489

Reboot

Enter the reboot command in the terminal to restart the system, and the modified configuration file will take effect after restart!