diff --git a/zshrc b/zshrc index 3ed9f83..3dac126 100644 --- a/zshrc +++ b/zshrc @@ -321,13 +321,11 @@ projctl () { twinmon () { FIRSTMON="LVDS1" - FIRSTMONRESOL="1366x768" SECONDMON="VGA1" - SECONDMONRESOL="1280x1024" if [[ $1 == "off" ]]; then - xrandr --output $FIRSTMON --mode $FIRSTMONRESOL --primary --output $SECONDMON --off + xrandr --output $FIRSTMON --auto --primary --output $SECONDMON --off else - xrandr --output $FIRSTMON --mode $FIRSTMONRESOL --primary --output $SECONDMON --mode $SECONDMONRESOL --left-of $FIRSTMON + xrandr --output $FIRSTMON --auto --primary --output $SECONDMON --auto --left-of $FIRSTMON fi }