Created
December 8, 2020 17:41
-
-
Save ChrisTitusTech/37e72a62803cc38f404d554b90ac17c3 to your computer and use it in GitHub Desktop.
Disable Screensaver and timeouts on GNOME based Distributions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 0 | |
gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0 | |
gsettings set org.gnome.desktop.screensaver idle-activation-enabled false | |
gsettings set org.gnome.settings-daemon.plugins.power idle-dim false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment