Przemek Grondek
b0f3b01ee8
for remote streaming dummy display to external device like tablet or laptop
23 lines
537 B
Bash
Executable File
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
|