Remove unnecessary files

This commit is contained in:
2020-01-21 10:39:12 +01:00
parent abf0e0bb5c
commit 80e20aa00f
10 changed files with 0 additions and 284 deletions

View File

@@ -1,21 +0,0 @@
#!/bin/bash
intern=eDP-1
extern=HDMI-1
case $1 in
"-i")
m=$intern
;;
"-e")
m=$extern
;;
*)
echo "Wrong option"
esac
if xrandr --listactivemonitors | grep "$m"; then
xrandr --output "$m" --off
else
xrandr --output "$m" --auto
fi