Files
dotfiles/private_dot_local/bin/executable_chdp
T
2024-12-09 00:28:06 +05:30

17 lines
300 B
Bash

#!/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