mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-20 15:30:28 +01:00
Swap STEAM+Menu and STEAM+Options
This commit is contained in:
parent
45ab31ddcf
commit
4d138a9bc0
|
|
@ -21,3 +21,4 @@
|
|||
- Detect SAS (Secure Attention Sequence) in a way that does not prevent screen sleep
|
||||
- Recreate X360 device on fatal failure (might happen after resume)
|
||||
- DEBUG allows to keep X360 controller always connected
|
||||
- Swap `STEAM+Menu` and `STEAM+Options`. It makes more sense to switch windows with STEAM+3 horizontal lines
|
||||
|
|
|
|||
|
|
@ -56,13 +56,13 @@ namespace SteamController.Profiles
|
|||
|
||||
protected virtual bool AdditionalShortcuts(Context c)
|
||||
{
|
||||
if (c.Steam.BtnMenu.Pressed())
|
||||
if (c.Steam.BtnOptions.Pressed())
|
||||
{
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.LWIN, VirtualKeyCode.TAB);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (c.Steam.BtnOptions.Pressed())
|
||||
if (c.Steam.BtnMenu.Pressed())
|
||||
{
|
||||
c.Keyboard.KeyPress(VirtualKeyCode.F11);
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
| Options (hold for 1s) | Switch to next profile | Switch to next profile | Switch to next profile | Switch to next profile |
|
||||
| Options (hold for 2s) | Toggle desktop mode | Toggle desktop mode | | |
|
||||
| STEAM + 3 dots | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE | CTRL + SHIFT + ESCAPE |
|
||||
| STEAM + Menu | WIN + TAB | WIN + TAB | WIN + TAB | WIN + TAB |
|
||||
| STEAM + Options | F11 | F11 | F11 | F11 |
|
||||
| STEAM + Options | WIN + TAB | WIN + TAB | WIN + TAB | WIN + TAB |
|
||||
| STEAM + Menu | F11 | F11 | F11 | F11 |
|
||||
| STEAM + A | RETURN | RETURN | | RETURN |
|
||||
| STEAM + B (hold for 1s) | ALT + F4 | ALT + F4 | | ALT + F4 |
|
||||
| STEAM + B (hold for 3s) | Kill active process | Kill active process | | Kill active process |
|
||||
|
|
|
|||
Loading…
Reference in a new issue