2

Is it possible to set a double-tap keybinding on Windows PowerToys?

For example: I want to use double tap ctrl to open the PowerToys run feature, but it only accepts combined keybindings.

1 Answers1

2

You can write an AHK script (see Assigning a double-tap hotkey).

Something like:

LControl::
 {
   KeyWait, LControl
   KeyWait, LControl, D T.3
   If (!ErrorLevel)
    {
      goto, sub
    }
 }
return

sub: { msgbox, It worked! } return

But the next challenge will replacing "msgbox, It worked!" by Invoking PowerToys Run via command line.

So the answer remains: No, you cannot!

Luuk
  • 478