Skip to content

Instantly share code, notes, and snippets.

@jan53n
Created November 19, 2018 02:38
Show Gist options
  • Save jan53n/670c8c07316fbcbc307047e5d1310268 to your computer and use it in GitHub Desktop.
Save jan53n/670c8c07316fbcbc307047e5d1310268 to your computer and use it in GitHub Desktop.
Toggle Gnome Night Light
# toggle gnome night light
if [ $(dconf read /org/gnome/settings-daemon/plugins/color/night-light-enabled) = true ]
then
dconf write /org/gnome/settings-daemon/plugins/color/night-light-enabled false
else
dconf write /org/gnome/settings-daemon/plugins/color/night-light-enabled true
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment