How to use Quick Terminal? #3610
-
I see Quick Terminal is listed as a feature on the website, the top feature for macOS. And I see it as an option in the menu at View > Quick Terminal. This seems like a popular feature so I must be missing something very obvious -- how do I use it? There's no hotkey listed next to it in the View dropdown, and I can't find any other way to trigger it. Having to select View > Quick Terminal seems very... not quick lol. Why would I do this over opening a new tab? Would someone please mind explaining how to use this feature, thanks! 😅 |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 10 replies
-
You can add a binding for this in the (this one binds CTRL + backtick to the Quick Terminal). The Tap the binding once to show, tap again to hide. Or, with the default config, clicking/focusing some other window will also auto-close the Quick Terminal (its contents will persist). You can also drag the edge of the Quick Terminal to make it taller. |
Beta Was this translation helpful? Give feedback.
-
Since Ghostty has a Zero Configuration Philosophy I would argue there should be a default key binding since without a key binding this feature doesn't make much sense?! https://ghostty.org/docs/config#zero-configuration-philosophy |
Beta Was this translation helpful? Give feedback.
-
Is there a way to open ghostty in quick terminal mode by specifying a flag? Like ghostty --quick-terminal? I'd rather manage the keybindings in my operating system than have ghostty manage it from the config file. That way I don't have to grant any extra permissions, and I don't have to fumble with finding the correct key combo strings. |
Beta Was this translation helpful? Give feedback.
-
Is there a way for this to work while Ghostty is terminated? Currently for quick terminal to work, Ghostty must be active (appear in the app switcher). I do not always have my terminal app open, so being able to use quick terminal any time would be useful. |
Beta Was this translation helpful? Give feedback.
-
is there a way to change the default quick terminal size (width/height)? |
Beta Was this translation helpful? Give feedback.
You can add a binding for this in the
config
file, something like this for ex:keybind = global:ctrl+grave_accent=toggle_quick_terminal
(this one binds CTRL + backtick to the Quick Terminal).
The
global
item means it will work even if some other app is active, but (on MacOS)global
will require Ghostty to have Privacy->Accessibility permissions in the system settings in order to work. Otherwise not usingglobal
means Ghostty needs to be active in order for the keybinding to work.Tap the binding once to show, tap again to hide. Or, with the default config, clicking/focusing some other window will also auto-close the Quick Terminal (its contents will persist). You can also drag the edge of…