nsbin/x-off
Nico Schottelius 6a9383e654
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
x-off: also retune mouse
2025-03-08 14:16:28 +09:00

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