dot/scripts/ddc-switch-inputs

20 lines
307 B
Plaintext
Raw Normal View History

2021-10-09 21:20:41 +00:00
#!/bin/bash
# Usage: ddc-switch-inputs 1
case $1 in
1 )
# Config 1: Main PC
OUT=("0x0f" "0x20")
;;
2 )
# Config 2: Virtual machine
OUT=("0x11" "0x21")
;;
* )
echo "Unknown input '$1'"
exit 1
;;
esac
2023-12-04 02:32:16 +00:00
ddcutil --bus=10 setvcp 60 ${OUT[0]} &
2021-10-09 21:20:41 +00:00
wait