77eb9f5270
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
8 lines
119 B
Bash
Executable file
8 lines
119 B
Bash
Executable file
#!/bin/sh
|
|
# Nico Schottelius
|
|
|
|
external="$(cat ~/.x-monitors)"
|
|
|
|
for R in $external; do
|
|
xrandr --output $R --off
|
|
done
|