diff options
Diffstat (limited to 'scripts/Scripts/screentool')
-rwxr-xr-x | scripts/Scripts/screentool | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/Scripts/screentool b/scripts/Scripts/screentool new file mode 100755 index 0000000..2d8da9e --- /dev/null +++ b/scripts/Scripts/screentool @@ -0,0 +1,35 @@ +#!/usr/bin/env bash +DMENU="rofi -dmenu -i" +XRANDR="xrandr" + +set -e + +displays=$(xrandr | awk -F ' ' '/ connected/ {print $1}') + +echo "Found displays ${displays}" + +# Prompt for display +chosen=$(echo ${displays} | tr " " "\n" | $DMENU -p "output") + +# get action +action=$(printf "auto\noff" | $DMENU -p "action") + +if [ "$action" = "off" ]; then + set -x + $XRANDR --output $chosen --off + exit 0 +fi + +# Get position +where=$(printf "left-of\nright-of\nbelow\nabove\nnone" | $DMENU -p "position") + +if [ "$where" = "none" ]; then + set -x + $XRANDR --output $chosen --auto + exit 0 +fi + +other=$(echo ${displays} | tr " " "\n" | $DMENU -p "other") + +set -x +$XRANDR --output $chosen --auto --${where} $other |