diff options
author | Adam T. Carpenter <atc@sparrowhawk.53hor.net> | 2020-05-13 08:20:22 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@sparrowhawk.53hor.net> | 2020-05-13 08:20:22 -0400 |
commit | 212b87cd003505f0414b8c3cc538c715f8c33df6 (patch) | |
tree | ff3a14941ca68e1252a85216d3431d3ab0d63ed2 | |
parent | 8b1a2abb3bc497af04f9531db46af4b0dda42117 (diff) | |
download | scripts-212b87cd003505f0414b8c3cc538c715f8c33df6.tar.xz scripts-212b87cd003505f0414b8c3cc538c715f8c33df6.zip |
added screenlayout scripts
-rwxr-xr-x | docked.sh | 2 | ||||
-rwxr-xr-x | undocked.sh | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/docked.sh b/docked.sh new file mode 100755 index 0000000..00b8a3c --- /dev/null +++ b/docked.sh @@ -0,0 +1,2 @@ +#!/bin/sh +xrandr --output VGA-0 --mode 1024x768 --pos 1920x312 --rotate normal --dpi 82 --output DP-0 --off --output DP-1 --off --output DP-2 --off --output DP-3 --primary --mode 1920x1080 --pos 0x0 --rotate normal --dpi 96 --output DP-4 --off diff --git a/undocked.sh b/undocked.sh new file mode 100755 index 0000000..ec2c9f3 --- /dev/null +++ b/undocked.sh @@ -0,0 +1,2 @@ +#!/bin/sh +xrandr --output VGA-0 --off --output DP-0 --off --output DP-1 --off --output DP-2 --off --output DP-3 --primary --mode 1920x1080 --pos 0x0 --rotate normal --dpi 96 --output DP-4 --off |