Comparing version
@@ -69,2 +69,3 @@ const { spawn, execFile, exec } = require("child_process"); | ||
} | ||
delay:0, | ||
} | ||
@@ -135,3 +136,3 @@ | ||
const w = settings.wins[k]; | ||
const {name, title, app, cmd, no_run} = w; | ||
const {name, title, app, cmd, no_run, delay} = w; | ||
@@ -150,4 +151,9 @@ let win_info_candidates = wins.filter(c => c.title.includes(title)); | ||
win.keyboard.printText(cmd); | ||
if(!no_run) | ||
await awaitDelay(200); | ||
if(!no_run) { | ||
if(delay) { | ||
await awaitDelay(delay); | ||
} | ||
win.keyboard.sendKey(13); | ||
} | ||
await awaitDelay(300); | ||
@@ -154,0 +160,0 @@ } |
{ | ||
"name": "my_wins", | ||
"version": "1.1.7", | ||
"version": "1.2.0", | ||
"description": "Automates starting and laying out your console windows for tsc, babel, tests, verdaccio, etc...", | ||
@@ -5,0 +5,0 @@ "keywords": ["automation","cmd","keysender","windows","autostart","autorun"], |
13349
0.79%157
3.97%