From e5db995945c867e7933c331524641c6a873a6cd7 Mon Sep 17 00:00:00 2001 From: Julian T Date: Thu, 25 Feb 2021 13:56:54 +0100 Subject: Changes to i3 and scripts around it --- scripts/Scripts/screentool | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 scripts/Scripts/screentool (limited to 'scripts/Scripts/screentool') 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 -- cgit v1.2.3