mirror of https://github.com/Flinner/dots.git
8 lines
635 B
Bash
Executable File
8 lines
635 B
Bash
Executable File
#!/bin/bash
|
|
|
|
my_laptop_external_monitor=$(xrandr --query | grep 'HDMI-0')
|
|
if [[ $my_laptop_external_monitor = *connected* ]]; then
|
|
#xrandr --output HDMI-0 --primary --mode 1920x1080 --rotate normal --output eDP-1-1 --mode 1920x1080 --rotate normal --left-of HDMI-0 &
|
|
xrandr --output HDMI-0 --mode 1920x1080 --rotate normal --output eDP-1-1 --mode 1920x1080 --rotate normal --right-of HDMI-0 --primary &
|
|
fi
|