Comparison of terminal emulators: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
No edit summary
Line 18: Line 18:
* License: [https://github.com/gnachman/iTerm2/blob/master/LICENSE GNU General Public License v2.0]
* License: [https://github.com/gnachman/iTerm2/blob/master/LICENSE GNU General Public License v2.0]
* Logging the screen output: Available
* Logging the screen output: Available
* Background process finished alert: Available {{Gd}} When multiple tabs are open at the same time: iTerm displays a blue circle 🔵 on the tab when a background process completes.
* Background process finished alert: Available {{Gd}} 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<ref>[https://iterm2.com/documentation-preferences-appearance.html Appearance Preferences - Documentation - iTerm2 - macOS Terminal Replacement]</ref>)


The built-in native terminal app on {{Mac}}
The built-in native terminal app on {{Mac}}
Line 24: Line 24:
* Logging the screen output:
* Logging the screen output:
* Background process finished alert: Available {{Gd}} When multiple tabs are open at the same time: iTerm displays a tree dots {{kbd | key=<nowiki>...</nowiki>}} on the tab when a background process completes.
* Background process finished alert: Available {{Gd}} When multiple tabs are open at the same time: iTerm displays a tree dots {{kbd | key=<nowiki>...</nowiki>}} on the tab when a background process completes.


== Test BASH script ==
== Test BASH script ==

Revision as of 14:24, 1 July 2025

Comparison of terminal emulators


icon_scale_pencil.png This article "Comparison of terminal emulators" is still being written. If there are any incomplete parts, you are welcome to directly edit them. 這篇文章「Comparison of terminal emulators」內容還在撰寫中,如果有不完整的部分,歡迎你直接動手修改


List of terminal emulators

ConEmu - Handy Windows Terminal for Win Os windows.png

Ghostty: "👻 Ghostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration." for macOS icon_os_mac.png & Linux Os linux.png v. 1.1.3

  • License: MIT License
  • Logging the screen output:
  • Background process finished alert: Not available

iTerm2 - Mac OS Terminal Replacement for macOS icon_os_mac.png Build 3.5.14

  • License: GNU General Public License v2.0
  • Logging the screen output: Available
  • Background process finished alert: Available Good.gif 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[2])

The built-in native terminal app on macOS icon_os_mac.png

  • License:
  • Logging the screen output:
  • Background process finished alert: Available Good.gif 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!"