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

Install Fail2ban on CentOS 7 & 8

Objective: Ban all IPs that have failed logins by matching a certain policies. Here's a…

Linux: Create a Shell Script to Watch Services

# create a script to watch services (notice the regex escape for special chars) sudo…

LAMPP: Change Apache Listening Port

Change Apache listening port:vim /opt/lampp/etc/httpd.confEdit line:Listen 80 (change to 8888)OPEN port 8888:vim /etc/sysconfig/iptables-A RH-Firewall-1-INPUT -m…