Quickly open a terminal from the current Finder directory.
- One-click launch — Open a terminal right from the Finder toolbar
- Smart detection — Automatically detects installed terminal apps
- Native icons — Displays each terminal's real app icon
- Pure Swift, lightweight and fast
- Simple to use, no complex configuration needed
The app auto-detects the following terminals. Uninstalled ones are greyed out:
- Terminal.app (built-in)
- iTerm2
- Warp
- Ghostty
- WezTerm
If the preferred terminal is uninstalled, it automatically falls back to the built-in Terminal.app.
# Build and install
make install
# Then drag go2shell.app from /Applications to the Finder toolbar
# (hold ⌘ while dragging)
# Done! Click the toolbar icon to open a terminal in the current directory.make install- Open the Applications folder
- Hold ⌘ (Command)
- Drag
go2shell.apponto any Finder window's toolbar - Done!
- Click the go2shell icon in any Finder window's toolbar
- A terminal opens at the current directory automatically
Option 1: Hold Option key
- Hold Option (⌥) and click go2shell in the Finder toolbar
- Or hold Option and double-click the app icon in Finder
- Select your preferred terminal in the settings UI
Option 2: Command line
open /Applications/go2shell.app --args --show-uiOption 3: Defaults
# Set to Terminal.app (default)
defaults write com.solarhell.go2shell PreferredTerminal Terminal
# Set to iTerm2
defaults write com.solarhell.go2shell PreferredTerminal iTerm
# Set to Warp / Ghostty / WezTerm
defaults write com.solarhell.go2shell PreferredTerminal Warp
defaults write com.solarhell.go2shell PreferredTerminal Ghostty
defaults write com.solarhell.go2shell PreferredTerminal WezTerm- macOS Sequoia 15.0+
- Xcode 16+ (for building)
Built with Swift Package Manager and Makefile.
make help # Show all commands
make build # Build the app
make install # Install to /Applications
make clean # Clean build files
make debug # Show debug infoswift build -c release
.build/release/go2shellNote: SPM alone only compiles the binary. Use
make buildto create a full App Bundle.
- Uses Apple Events (AppleScript) to get the frontmost Finder window's path
- Falls back to the Desktop path if no Finder window is open
- Opens the preferred terminal at that path via AppleScript
- Exits automatically after launching the terminal
go2shell/
├── Package.swift # SPM configuration
├── Makefile # Build automation
├── Sources/
│ ├── main.swift # Entry point
│ ├── Views.swift # SwiftUI interface
│ ├── TerminalManager.swift # Terminal launch logic
│ ├── Terminal.swift # Terminal.app ScriptingBridge
│ ├── Finder.swift # Finder ScriptingBridge
│ └── FinderManager.swift # Finder path retrieval
├── Resources/
│ ├── Info.plist # App configuration
│ ├── go2shell.entitlements # App entitlements
│ └── AppIcon.icns # App icon
└── .build/ # Build output (generated)
- Support Terminal.app, iTerm2, Warp, Ghostty, WezTerm
- Native app icons
- Grey out uninstalled terminals, auto-fallback on uninstall
- Open in new tab or new window
- Keyboard shortcuts
- Custom terminal commands (e.g., run a script after cd)
MIT
