-
-
Save thecodermehedi/907d2a316834854513b2fde6fcda891a 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