dotfiles/.scripts/toggleMonitor

16 lines
364 B
Bash
Executable File

#!/bin/bash
primary=DP-1
secondary=HDMI-0
if xrandr | grep "$secondary connected 1920x1080"; then
echo "Turing second monitor off"
xrandr --output "$secondary" --off
else
echo "Turing second monitor on"
xrandr --output "$secondary" --left-of "$primary" --auto
fi
. "${HOME}/.cache/wal/colors.sh"
PATH_TO_IMG=$wallpaper
feh --bg-fill $PATH_TO_IMG