Replies: 1 comment 9 replies
-
Oh sweet! I didn't know about those. Terminal and iTerm both require AppleScript to launch and then write commands (examples below). If you can find any AppleScript for launching Terminus and/or Micro, I'd be happy to add it to the project. Use "Script Editor" (an AppleScript editor that's on every mac) to test the scripts. Terminaltell application "Terminal"
do script "echo hi"
activate
end tell iTermtell application "iTerm"
if application "iTerm" is running then
try
tell the first window to create tab with default profile
on error
create window with default profile
end try
end if
delay 0.1
tell the first window to tell current session to write text "echo hi"
activate
end tell |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I would like to open the source files in Terminus and Micro. Is there a way to configure this? Thank you
Beta Was this translation helpful? Give feedback.
All reactions