Posted On June 6, 2020

Disable Screensaver on CentOS 8

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Disable Screensaver on CentOS 8

Here are a couple of tricks that worked in the past. I don’t think they work now, so this is just a placeholder to remind me to follow up at a later time.

# Disable screensaver
vim /etc/X11/xorg.conf
### add these lines ###
Section "ServerFlags"
    Option    "blank time" "0"
    Option    "standby time" "0"
    Option    "suspend time" "0"
    Option    "off time" "0"
EndSection

OR

vim /etc/X11/xorg.conf.d/screensaver
### add this line ###
Option "DPMS"  off

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Remove Apps in CentOS/Redhat

Check the repo directory: [root@localhost ~]# ls /etc/yum.repos.d CentOS-Base.repo CentOS-Sources.repo CentOS-CR.repo CentOS-Vault.repo CentOS-Debuginfo.repo docker-ce.repo CentOS-fasttrack.repo…

Linux: How to Display the SSL Certificate of a Remote Server URL

Command: server=test.kimconnect.comecho | openssl s_client -showcerts -servername $server -connect $server:443 2>/dev/null | openssl x509 -inform…

Linux: Shell Script to Reboot Remote Devices Daily

Set Variables remoteDevice=900.468.20.1username=adminpassword="PASSWORDHERE" Install sshpass if it doesn't exist if ! sshpass -v sshpass &>…