summaryrefslogtreecommitdiff
path: root/scripts/.scripts/gamma.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/.scripts/gamma.sh')
-rwxr-xr-xscripts/.scripts/gamma.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/.scripts/gamma.sh b/scripts/.scripts/gamma.sh
new file mode 100755
index 0000000..0117dd5
--- /dev/null
+++ b/scripts/.scripts/gamma.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+MAIN_DP=DP-2;
+
+v=$1
+
+if [ $# -ne 0 ]; then
+ xrandr --output $MAIN_DP --gamma $(paste -d" " <(xrandr | grep " connected" | cut -f1 -d " ") <(xrandr --current --verbose | grep "Gamma" | cut -f7 -d" " | cut -f1 -d":" | xargs -I % echo "1/%") | grep $MAIN_DP | cut -d" " -f2 | xargs -I % echo "%*$v" | bc -l)
+else
+ xrandr --output $MAIN_DP --gamma 1.3
+fi