add delay between keystrokes for wtype

This commit is contained in:
2026-03-23 00:40:51 +01:00
parent c2aea05000
commit 772d58b55e
+1 -1
View File
@@ -11,7 +11,7 @@ public class WtypeInput : ITextInput
StartInfo = new ProcessStartInfo
{
FileName = "wtype",
Arguments = $"\"{text}\"",
Arguments = $"-d 5 \"{text}\"",
UseShellExecute = false,
CreateNoWindow = true
}