dot/scripts/gamma.sh

11 lines
365 B
Bash
Raw Normal View History

2021-10-09 21:20:41 +00:00
#!/bin/bash
2022-05-15 23:48:34 +00:00
MAIN_DP=DP-0;
2021-10-09 21:20:41 +00:00
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