2023-06-27 09:05:35 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# 2023-06-27, Nico Schottelius
|
|
|
|
|
|
|
|
# DP2 = right, port more nearby me
|
|
|
|
# DP3 = "regular charging port"
|
2023-06-30 10:16:52 +00:00
|
|
|
|
|
|
|
# v1, above
|
|
|
|
#xrandr --output DP2 --auto --above eDP1 --rotate left
|
|
|
|
#xrandr --output DP3 --auto --left-of DP2 --rotate left
|
|
|
|
|
|
|
|
# v1, left+right
|
|
|
|
xrandr --output DP2 --auto --right-of eDP1 --rotate left
|
|
|
|
xrandr --output DP3 --auto --left-of eDP1 --rotate left
|