initial commit

This commit is contained in:
davidovski 2021-10-09 22:20:41 +01:00
commit 01ced0b7ce
184 changed files with 35358 additions and 0 deletions

19
scripts/ddc-switch-inputs Executable file
View file

@ -0,0 +1,19 @@
#!/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
ddcutil --bus=5 setvcp 60 ${OUT[0]} &
wait