blob: be119460a88b7e011939137525d250c73e39dc26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
if [[ $# == 1 ]]; then
r=$1; g=$1; b=$1;
else
r=${1:-'1'}; g=${2:-'1'}; b=${3:-'1'};
fi;
xrandr --output eDP-1 --brightness 1 --gamma $r:$g:$b
|