Skip to content

Commit

Permalink
SteamController: Added Win+D shortcut under Steam+RightStickPress
Browse files Browse the repository at this point in the history
Co-authored-by: Kamil Trzciński <ayufan@ayufan.eu>
  • Loading branch information
DavidRGriswold and ayufan authored Sep 5, 2023
1 parent 160c476 commit 97d0e10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions SteamController/Profiles/Default/GuideShortcutsProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ protected override bool SteamShortcuts(Context c)
c.Keyboard.KeyPress(VirtualKeyCode.ESCAPE);
}

if (c.Steam.BtnRightStickPress.Pressed())
{
c.Keyboard.KeyPress(VirtualKeyCode.LWIN, VirtualKeyCode.VK_D);
}

// Additional binding for tool hotkeys (Lossless Fullscreen is nice)
if (c.Steam.BtnDpadUp.Pressed())
{
Expand Down
1 change: 1 addition & 0 deletions docs/shortcuts.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
| STEAM + 3 dots | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE |
| STEAM + Options | WIN + TAB | WIN + TAB | WIN + TAB | WIN + TAB | WIN + TAB |
| STEAM + Menu | F11 | F11 | F11 | F11 | F11 |
| STEAM + Right Stick Press | WIN + D (Desktop) | WIN + D (Desktop) | WIN + D (Desktop) | | WIN + D (Desktop) |
| STEAM + A | RETURN | RETURN | RETURN | | RETURN |
| STEAM + B (hold for 1s) | ALT + F4 | ALT + F4 | ALT + F4 | | ALT + F4 |
| STEAM + B (hold for 3s) | Kill active process | Kill active process | Kill active process | | Kill active process |
Expand Down

0 comments on commit 97d0e10

Please sign in to comment.