dotfiles/bin/remove-dummy-display

23 lines
537 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
DUMMY_MONITOR=HDMI-A-0
killall compton
xrandr --output $DUMMY_MONITOR --off
xrandr --delmode $DUMMY_MONITOR "2384x1668_60.00"
# Remove workaround
xrandr --output DisplayPort-0 --scale 1x1
xrandr --output DVI-D-0 --scale 1x1
compton &
if test -f /usr/share/backgrounds/brad-huchteman-stone-mountain.jpg ; then
feh --bg-scale /usr/share/backgrounds/brad-huchteman-stone-mountain.jpg &
else
if test -f /usr/share/backgrounds/gnome/Road.jpg ; then
feh --bg-scale /usr/share/backgrounds/gnome/Road.jpg &
fi
fi