Created
May 21, 2019 21:59
-
-
Save davipatti/d1ef98b1235ef2ff0903764352332921 to your computer and use it in GitHub Desktop.
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 | |
# 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