Skip to content

Instantly share code, notes, and snippets.

@davipatti
Created May 21, 2019 21:59
Show Gist options
  • Save davipatti/d1ef98b1235ef2ff0903764352332921 to your computer and use it in GitHub Desktop.
Save davipatti/d1ef98b1235ef2ff0903764352332921 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Toggle gsettings (ubuntu GNOME desktop) night light
state=$(gsettings get org.gnome.settings-daemon.plugins.color night-light-enabled)
case $state in
true )
new=false
;;
false )
new=true
;;
esac
gsettings set org.gnome.settings-daemon.plugins.color night-light-enabled $new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment