Internal KVM Switch
FastAPI dashboard and polling service for Alienware-only KVM switching.
Trigger Logic
The app targets Alienware AW3423DWF for switching and uses Samsung as trigger-only.
Monitor filtering:
- Alienware target monitor: description contains
AW3423DWF - Samsung trigger monitor: Samsung-only descriptions (
SAM.../SAMSUNG) - Other non-Alienware DDC monitors are ignored for trigger selection
Configure only one value per machine:
- this device Alienware target port:
DP1,DP2, orHDMI
Samsung trigger input codes mapped by port:
-
DP1->15 -
DP2->19 -
HDMI->17 -
If Samsung trigger input matches this device port code, the app runs
DDM.exe /MNT:AW3423DWF /WriteActiveInput <PORT>. -
If it does not match, the app waits.
Retry behavior:
- Only attempts switching while the Samsung screen is connected
- After each switch attempt, waits
5seconds and rechecks - Tries at most
3times per Samsung-connected session - After success, it will not try again until the Samsung screen disconnects and reconnects
Run
uv run kvm-switch
The dashboard is served at http://localhost:4000.
Test
uv run pytest -q
Diagnostic Script
Use this to inspect connected DDC/CI monitors and current input values:
uv run monitorcontrol_main.py
Autostart
Easiest option: Startup folder
- Press
Win + R - Run:
shell:startup
- Create a shortcut in that folder pointing to:
C:\Users\LagoWorkStation\OneDrive\Documentos\BE-terna\Internal - KVM Switch\start_kvm_switch_background.vbs
This starts the app at logon in the background (no persistent console window).
Cleaner option: Task Scheduler
Use Task Scheduler if you want it to start automatically at logon with better control.
Program/script:
wscript.exe
Arguments:
"C:\Users\LagoWorkStation\OneDrive\Documentos\BE-terna\Internal - KVM Switch\start_kvm_switch_background.vbs"
Set the trigger to At log on. Optional: enable Hidden in task settings.