From 01ced0b7ce47d279789efb2dc70d1cd009ac56ad Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 9 Oct 2021 22:20:41 +0100 Subject: initial commit --- scripts/.scripts/gamma.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/.scripts/gamma.sh (limited to 'scripts/.scripts/gamma.sh') 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 -- cgit v1.2.1