Created
April 11, 2022 23:51
-
-
Save dhil/dfd134e98d668728aee56589e375cbeb to your computer and use it in GitHub Desktop.
Colour saturation script
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=/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