mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-12-22 01:03:35 +01:00
Updated brightness script
This commit is contained in:
parent
12caa84687
commit
ba2d3bd44f
1 changed files with 15 additions and 4 deletions
|
@ -1,18 +1,29 @@
|
|||
#!/bin/bash
|
||||
disps=$(xrandr -q | grep " connected")
|
||||
|
||||
if [ ! -z $2 ];
|
||||
then
|
||||
disp=$1
|
||||
bright=$2
|
||||
elif [ $(echo $disps | wc | awk '{print $1}') = 1 ];
|
||||
then
|
||||
disp=$(echo $disps | awk '{print $1}')
|
||||
else
|
||||
echo "Available displays:"
|
||||
xrandr -q | grep " connected"
|
||||
|
||||
echo $disps
|
||||
echo "What display to use?"
|
||||
read disp
|
||||
fi
|
||||
|
||||
echo "Brightness[0-1]:"
|
||||
read bright
|
||||
if [ -z $bright ];
|
||||
then
|
||||
if [ ! -z $1 ];
|
||||
then
|
||||
bright=$1
|
||||
else
|
||||
echo "Brightness[0-1]:"
|
||||
read bright
|
||||
fi
|
||||
fi
|
||||
|
||||
xrandr --output $disp --brightness $bright
|
||||
|
|
Loading…
Reference in a new issue