Add hotkey to change monitors

This commit is contained in:
cool-mist
2024-12-09 00:28:06 +05:30
parent 3d50d72da4
commit 7f72ebf4ff
2 changed files with 25 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
small=HDMI-0
big=DP-1
small_used=`xrandr --listactivemonitors | grep "$small"`
small_used_len=${#small_used}
echo $small_used_len
current=$small
next=$big
if [[ small_used_len -eq 0 ]]; then
current=$big
next=$small
fi
xrandr --output "$current" --off --output "$next" --auto