Requires:
1. Elite Dangerous
2. Bigscreen (free) http://store.steampowered.com/app/457550/
3. AutoHotkey https://www.autohotkey.com/
Save script as a .ahk and run. See https://www.autohotkey.com/ if you need help with that.
I map F8 and F9 to a toggle switch on my HOTAS. You can also use VoiceAttack, or just press the keyboard keys. It will open Bigscreen if it's not already running.
This may work with VirtualDesktop as well, if anyone who owns that could try it I'd love to know. I hear VRdesktop is a little easier on the resources.
Rift CV1 here. The Vive guys already get that screen injector that doesn't work for us, this one definitely works for the Oculus camp. I don't see why it wouldn't work on Vive as well.
1. Elite Dangerous
2. Bigscreen (free) http://store.steampowered.com/app/457550/
3. AutoHotkey https://www.autohotkey.com/
Save script as a .ahk and run. See https://www.autohotkey.com/ if you need help with that.
Code:
F8::
IfWinNotExist, BigScreen
{
Run steam://rungameid/457550
}
else
{
WinActivate, BigScreen
}
return
F9::
WinActivate, Elite - Dangerous (CLIENT)
return
I map F8 and F9 to a toggle switch on my HOTAS. You can also use VoiceAttack, or just press the keyboard keys. It will open Bigscreen if it's not already running.
This may work with VirtualDesktop as well, if anyone who owns that could try it I'd love to know. I hear VRdesktop is a little easier on the resources.
Rift CV1 here. The Vive guys already get that screen injector that doesn't work for us, this one definitely works for the Oculus camp. I don't see why it wouldn't work on Vive as well.