Is there a good way to "sleep for two seconds" in Joyride? I'm looking at kicking off a command in the terminal and then taking some action once the command has been running for a couple of seconds (it's a command that runs until I quit it, so I couldn't wait for "completion" even if .sendText allowed that).
(require '[promesa.core :as p])
(p/do
(p/delay 2000)
(your-command))Ah, my lack of familiarity with promesa... Thank you!