This commit is contained in:
David Griswold 2025-06-14 10:53:25 -05:00 committed by GitHub
commit ca89467e37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 23 additions and 2 deletions

View file

@ -109,10 +109,17 @@ namespace SteamController.Profiles.Default
c.Keyboard.KeyPress(VirtualKeyCode.LWIN, VirtualKeyCode.VK_D);
}
// This is "[" + "]" on a US keyboard, the default shortcut for the Game Pauser program on steam
if (c.Steam.BtnLeftStickPress.Pressed())
{
c.Keyboard.KeyPress(new VirtualKeyCode[]{VirtualKeyCode.OEM_4,VirtualKeyCode.OEM_6});
}
// Additional binding for tool hotkeys (Lossless Fullscreen is nice)
if (c.Steam.BtnDpadUp.Pressed())
{
c.Keyboard.KeyPress(new VirtualKeyCode[] { VirtualKeyCode.LCONTROL, VirtualKeyCode.LMENU }, VirtualKeyCode.VK_U);
}
return true;