Comparison of terminal emulators: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 13: | Line 13: | ||
* License: [https://github.com/ghostty-org/ghostty/blob/main/LICENSE MIT License] | * License: [https://github.com/ghostty-org/ghostty/blob/main/LICENSE MIT License] | ||
* Logging the screen output: | * Logging the screen output: | ||
* Background process finished alert: Not available | * Background process finished alert: Not available<ref>[https://github.com/ghostty-org/ghostty/discussions/3555 "Command Finished" Notifications · ghostty-org/ghostty · Discussion #3555]</ref> | ||
[https://www.iterm2.com/downloads.html iTerm2 - Mac OS Terminal Replacement] for {{Mac}} Build 3.5.14 | [https://www.iterm2.com/downloads.html iTerm2 - Mac OS Terminal Replacement] for {{Mac}} Build 3.5.14 | ||
| Line 31: | Line 31: | ||
echo "Starting test..." && sleep $((3 + RANDOM % 3)) && echo "Test completed!" | echo "Starting test..." && sleep $((3 + RANDOM % 3)) && echo "Test completed!" | ||
</pre> | </pre> | ||
== References == | |||
<references /> | |||
[[Category: Programming]] | [[Category: Programming]] | ||
[[Category: Software]] | [[Category: Software]] | ||
Revision as of 14:26, 1 July 2025
Comparison of terminal emulators
List of terminal emulators
ConEmu - Handy Windows Terminal for Win
- Download: Releases · Maximus5/ConEmu
- License: BSD 3-Clause "New" or "Revised" License
- Logging the screen output: Available[1]
- Background process finished alert:
Ghostty: "👻 Ghostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration." for macOS
& Linux
v. 1.1.3
- License: MIT License
- Logging the screen output:
- Background process finished alert: Not available[2]
iTerm2 - Mac OS Terminal Replacement for macOS
Build 3.5.14
- License: GNU General Public License v2.0
- Logging the screen output: Available
- Background process finished alert: Available
When multiple tabs are open at the same time: iTerm displays a blue circle 🔵 on the tab when a background process completes. (Show new-output indicator[3])
The built-in native terminal app on macOS
- License:
- Logging the screen output:
- Background process finished alert: Available
When multiple tabs are open at the same time: iTerm displays a tree dots ... on the tab when a background process completes.
Test BASH script
This command simulates a test process with a random 3-5 second delay between start and completion messages.
echo "Starting test..." && sleep $((3 + RANDOM % 3)) && echo "Test completed!"