All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
9 lines
251 B
Bash
Executable file
9 lines
251 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Turn off all outputs besides the primary - connected also matches disconnected ;-)
|
|
for d in $(xrandr | grep -v primary | awk '/connected/ { print $1 }'); do
|
|
xrandr --output $d --off
|
|
done
|
|
|
|
# tune mouse to re-adjust mappings
|
|
tune-mouse
|