You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
laughing-hipster/src/.config/i3/setup_external_displays.sh

26 lines
894 B

#!/bin/bash
PRIMARY=$(xrandr | grep -i -e "eDP.* connected" | awk '{ print $1 }')
SECONDARY=$(xrandr | grep -m 1 "^DP-[0-9] connected" | awk '{ print $1 }')
BACKGROUND=~/Pictures/Wallpapers/logo.svg
if [ "$1" = "CONNECT" ]; then
xrandr --output "${SECONDARY}" --auto --right-of ${PRIMARY} --dpi 165;
nitrogen --head=2 --save --set-color=#FFFFFF --set-centered "${BACKGROUND}";
nitrogen --head=1 --save --set-color=#FFFFFF --set-centered "${BACKGROUND}";
elif [ "$1" = "DISCONNECT" ]; then
xrandr --output "${SECONDARY}" --off;
elif [ "$1" = "RECONNECT_PRIMARY" ]; then
xrandr --output ${PRIMARY} --off;
elif [ "$1" = "OFF" ]; then
xrandr --output ${PRIMARY} --off;
else
set +x;
exit 1;
fi
sleep 1;
xrandr --output ${PRIMARY} --auto --primary --preferred --dpi 100 --filter bilinear;
nitrogen --head=0 --save --set-color=#FFFFFF --set-centered ${BACKGROUND};