dotfiles/bin/remove-dummy-display
Przemek Grondek b0f3b01ee8 Add scripts for dummy displays
for remote streaming dummy display to external device
 like tablet or laptop
2022-05-16 22:29:33 +02:00

23 lines
537 B
Bash
Executable File

#!/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