You can import a ready-made example from here: https://eyeauras.net/share/S20240702143616Nj8fr0gCxktL
HotkeyIsActive to it and bind it to a convenient button (this will be our on/off switch, in the example it's F3), change the activation type to Click/Hold.C# Script action to On Enter.F3 will launch Notepad.// You can use either the short name
Process.Start("notepad");
// or the full path
//Process.Start("C:/Windows/system32/notepad.exe");
// Full documentation can be found here - [https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.process.start?view=net-8.0](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.process.start?view=net-8.0)