f5a8cd1259
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
6 lines
177 B
Bash
Executable file
6 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
# Enable connected, disable disconnected outputs
|
|
|
|
for output in $(xrandr -q | grep -v ^Screen | awk '/^[^ ]/ { print $1 }'); do
|
|
xrandr --output $output --auto
|
|
done
|