mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-02-12 18:44:23 +01:00
Reduce hold for Toggle desktop mode to 2s
This commit is contained in:
parent
3176ac09dc
commit
d9877e5491
|
|
@ -206,7 +206,7 @@ Of course you will have access to all described shortcuts.
|
|||
|----------------------------|------------------------|------------------------|------------------------|------------------------|
|
||||
| X360 Controller | Not connected | Connected | Not connected | Not connected |
|
||||
| Options (hold for 1s) | Switch to next profile | Switch to next profile | Switch to next profile | Switch to next profile |
|
||||
| Options (hold for 3s) | Toggle desktop mode | Toggle desktop mode | | |
|
||||
| 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 |
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ namespace SteamController.Profiles
|
|||
public const String ShortcutConsumed = "ShortcutsProfile";
|
||||
public readonly TimeSpan HoldForShorcuts = TimeSpan.FromMilliseconds(200);
|
||||
private readonly TimeSpan HoldToSwitchProfile = TimeSpan.FromSeconds(1);
|
||||
private readonly TimeSpan HoldToSwitchDesktop = TimeSpan.FromSeconds(3);
|
||||
private readonly TimeSpan HoldToSwitchDesktop = TimeSpan.FromSeconds(2);
|
||||
|
||||
public override Status Run(Context c)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue