diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-02-02 13:43:28 -0600 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-02-02 13:43:28 -0600 |
commit | a8306f8759f08cdd4041505635090c19fd6c1e23 (patch) | |
tree | ea901410e94b4c50ab4ea64e28590cf030770d70 | |
parent | 7e22566df7e804e8adfa237e4ae36107bfc62c32 (diff) | |
download | dotconfig-a8306f8759f08cdd4041505635090c19fd6c1e23.tar.xz dotconfig-a8306f8759f08cdd4041505635090c19fd6c1e23.zip |
position 2nd monitor on t495 docked
-rwxr-xr-x | x11/xprofile.T495 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/xprofile.T495 b/x11/xprofile.T495 index 1d66a7d..6dbc742 100755 --- a/x11/xprofile.T495 +++ b/x11/xprofile.T495 @@ -15,7 +15,7 @@ if xrandr | grep "HDMI-A-0 connected 3840x2160" > /dev/null; then # set dp from docking station to 3840x2160@29.98hz since doesn't output in 60hz mode for some reason dpdisplay="$(xrandr | grep -E 'DisplayPort-[0-9]+ connected 3840x2160' | grep -o 'DisplayPort-.')" - [ -n "$dpdisplay" ] && xrandr --output "$dpdisplay" --mode 3840x2160 --rate 29.98 + [ -n "$dpdisplay" ] && xrandr --output "$dpdisplay" --mode 3840x2160 --rate 29.98 --right-of "HDMI-A-0" wait $xrdbpid # wait for xrdb like in base xprofile fi |