i think i posted my setup here in the past ...
But I am using chrome remote desktop together with an autohotkey script, bound to certain g-keys on my keyboard.
That way I can quickly switch to the other machines without having to use synergy or such.
Edit:
forget that ... that was a private message ... let me copy it for you:
let me cite myself:
Well - I did box on the TrueBox TLP myself but only with legit means (you can use MySEQ for the map on one of the comps though).
I used Google Chrome Remote Desktop on the other PCs to get met access to them from the main computer.
To easily switch between the different screens I was using AutoHotkey with this script using ctrl+alt+[1-4] (one can bind those on a logitech keyboard to a G-key):
[CODE lang="ini" title="switcher.ahk"]
^!1::
IfWinExist, EverQuest ; local machine instance
WinActivate ; use the window found above
return
^!2::
IfWinExist, computername1 ; selects computer 1 RDP window
WinActivate ; use the window found above
return
^!3::
IfWinExist, computername2
WinActivate ; use the window found above
return
^!4::
IfWinExist, computername3
WinActivate ; use the window found above
return
[/CODE]
"computername[1-3]" is indeed the name of the computer. It shows up on the remote desktop window. So you will need to change that. The machine you are running all this on doesn't need the name though.
Ingame - of course - make extensive use of the ingame macros.
Fair warning: AutoHotkey also works for the game windows to automate gameplay sort of. But I know first hand that this led to suspensions and bans in the past.
I even streamed using different machines via AHK - so I don't see this being a problem.