Back to News
Advertisement

Propmpt-genned Rust shell is 13x the Ghostty size

yykurtov about 4 hours ago 3 comments

ZH version is available. Content is displayed in original English for accuracy.

I was one of the happy early Warp users. Hands down it was the best shell I ever used. Even the early preview was packed with useful dev-features more than any other shell I ever used.

Two years after they pivoted to AI platform it's now 805mb.

``` 805M /Applications/Warp.app 62M /Applications/Ghostty.app ```

Advertisement

⚡ Community Insights

Discussion Sentiment

50% Positive

Analyzed from 90 words in the discussion.

Trending Topics

#ghostty#mach#executable#bit#matter#why#universal#binary#architecture#performance

Discussion (3 Comments)Read Original on HackerNews

late_night_fixabout 3 hours ago
Performance,startup time and memory usage matter more in terminal apps than almost anywhere else.That's why people react strongly to this.
orfabout 1 hour ago
Why does the on-disk size matter for any of that?
flohofwoeabout 1 hour ago
...and you could probably shave off 20 MB from Ghostty because it is distributed as universal binary (does that even make sense in 2026)?

    > ls -al ghostty
    total 81992
    -rwxr-xr-x  1 floh  staff  41979664 Mar 13 17:08 ghostty
    > file ghostty
    ghostty: Mach-O universal binary with 2 architectures: [x86_64:Mach-O 64-bit executable     x86_64] [arm64]
    ghostty (for architecture x86_64):      Mach-O 64-bit executable x86_64
    ghostty (for architecture arm64):       Mach-O 64-bit executable arm64
E.g. the complete app bundle is 62 MB, of that the executable is 40 MB, but that contains both ARM and x86 code.