c23bfc5a82
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
6 lines
89 B
Bash
Executable file
6 lines
89 B
Bash
Executable file
#!/bin/sh
|
|
external="HDMI-2 VGA"
|
|
|
|
for R in $external; do
|
|
xrandr --output $R --off
|
|
done
|