diff options
Diffstat (limited to 'scripts/Scripts/screentool')
-rwxr-xr-x | scripts/Scripts/screentool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Scripts/screentool b/scripts/Scripts/screentool index 2d8da9e..9e41fd7 100755 --- a/scripts/Scripts/screentool +++ b/scripts/Scripts/screentool @@ -21,9 +21,9 @@ if [ "$action" = "off" ]; then fi # Get position -where=$(printf "left-of\nright-of\nbelow\nabove\nnone" | $DMENU -p "position") +where=$(printf "left-of\nright-of\nbelow\nabove\nsame" | $DMENU -p "position") -if [ "$where" = "none" ]; then +if [ "$where" = "same" ]; then set -x $XRANDR --output $chosen --auto exit 0 |