2011-05-25 10:26:45 +02:00
|
|
|
#!/bin/sh
|
2018-04-03 14:02:09 +02:00
|
|
|
|
|
|
|
# Turn off all outputs besides the primary - connected also matches disconnected ;-)
|
|
|
|
for d in $(xrandr | grep -v primary | awk '/connected/ { print $1 }'); do
|
2017-03-08 07:37:05 +01:00
|
|
|
xrandr --output $d --off
|
|
|
|
done
|