view bin/swapscreens.sh @ 788:fa3ad63ec3a3

https://github.com/novas0x2a/config-files/blob/master/.gitconfig#L89
author Jeff Hammel <k0scist@gmail.com>
date Wed, 28 Sep 2016 16:42:20 -0700
parents 71345f4de3ce
children
line wrap: on
line source

#!/bin/bash

# swap screens between internal laptop monitor and external monitor
# XXX sensitive to the individual laptop :(

# See also `unxrandr`:
# unxrandr - inverse tool of xrandr
# unxrandr  is  a  tool  that  queries  the  XRandR  state using ARandR's
# libraries and outputs an xrandr command line that reproduces the  state


INTERNAL="LVDS1"
EXTERNAL="VGA1"
INTERNAL_MODE="1366x768"
EXTERNAL_MODE="1600x1200"

xwininfo -root | grep "geometry $EXTERNAL_MODE"
if [ $? -eq 0 ]
then
 xrandr --output $EXTERNAL --off --output $INTERNAL --mode $INTERNAL_MODE
else
 xrandr --output $INTERNAL --off --output $EXTERNAL --mode $EXTERNAL_MODE
fi