I should probably re-work all of them at some point but these changes allow for external monitors with a resolution other than 1920x1080. When switching to laptop only, I disable all other monitors by listing all rather than hard coding common ones
12 lines
626 B
Bash
Executable file
12 lines
626 B
Bash
Executable file
#!/bin/sh
|
|
|
|
laptopScreen="eDP-1"
|
|
externalScreen="$(xrandr | grep -Eo '^.* connected' | grep -v "$laptopScreen" |
|
|
cut -d ' ' -f 1)"
|
|
externalResolution="$(xrandr | grep -A 1 "$externalScreen" | sed -n 2p | awk '{print $1}')"
|
|
|
|
pkill compton
|
|
xrandr --output "$laptopScreen" --primary --mode 1920x1080 --pos 0x0 --rotate normal --output "$externalScreen" --mode "$externalResolution" --pos 1920x0 --rotate normal
|
|
/usr/bin/compton --config "$HOME/.config/picom/picom.conf" & disown
|
|
|
|
# xrandr --output "$laptopScreen" --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-2 --mode 1920x1080 --pos 1920x0 --rotate normal
|