Skip to content

Instantly share code, notes, and snippets.

@dhil
Created April 11, 2022 23:51
Show Gist options
  • Save dhil/dfd134e98d668728aee56589e375cbeb to your computer and use it in GitHub Desktop.
Save dhil/dfd134e98d668728aee56589e375cbeb to your computer and use it in GitHub Desktop.
Colour saturation script
#!/bin/bash
TOGGLE=/tmp/.saturate-toggle
if [ ! -e $TOGGLE ]; then
touch $TOGGLE
nvidia-settings -a DigitalVibrance=1000
else
rm $TOGGLE
nvidia-settings -a DigitalVibrance=0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment