Run a command in a new terminal emulator window.
the command line to execute. This is not getting interpreted by a shell.
list of options that can be passed in order to tweak the behavior of the terminal window.
await runInTerminal(['journalctl', '--user', '-u', '-f', 'vicinae']);// or, inside a shell:await runInTerminal(['/bin/bash', 'echo "dis is my home: $HOME"'], { hold: true }); Copy
await runInTerminal(['journalctl', '--user', '-u', '-f', 'vicinae']);// or, inside a shell:await runInTerminal(['/bin/bash', 'echo "dis is my home: $HOME"'], { hold: true });
Run a command in a new terminal emulator window.