Skip to content

Instantly share code, notes, and snippets.

@ChrisTitusTech
Created December 8, 2020 17:41
Show Gist options
  • Save ChrisTitusTech/37e72a62803cc38f404d554b90ac17c3 to your computer and use it in GitHub Desktop.
Save ChrisTitusTech/37e72a62803cc38f404d554b90ac17c3 to your computer and use it in GitHub Desktop.
Disable Screensaver and timeouts on GNOME based Distributions
#!/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