Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

MacRumors

macrumors bot
Original poster
Apr 12, 2001
68,179
38,959


Apple's Terminal app is getting a visual refresh in macOS Tahoe, and it's the first notable design update since the command-line tool debuted.

terminal-macos-tahoe.jpg

The updated Terminal will support 24-bit color and Powerline fonts, according to Apple's Platforms State of the Union presentation at WWDC 2025. The app will also adopt the new Liquid Glass aesthetic with redesigned themes that align with macOS 26's broader visual overhaul.

Terminal already offers various color profiles, but the macOS 26 version promises enhanced customization options for displaying system information in more visually appealing ways.

It's a long-overdue modernization of an app that's essential for developers and power users, as it's remained largely unchanged for over two decades.

macOS Tahoe launches this fall, with the developer beta available now and the first public beta expected in July.

Article Link: Apple's Terminal App Gets Colorful Redesign in macOS Tahoe
 
Last edited:
It seems customisable enough already. My prompt for non-root is:

host=`hostname -s`
export PS1="%K{0}%F{15} $host %k%F{4} %n %F{28}%~ > %f"

It's also possible to change the default text colour, background, opacity etc.

Part of my issue is I don't fully understand what "24-bit color and Powerline fonts" brings in the way of useful enhancements. No doubt I'll find out when I finally lose patience and install the betas 😁
 
If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
 
If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
Yeah, agreed here. Really wish that the iPad had a terminal app. It’s honestly a simpler and faster way to do many things.
 
If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
Try iSH, you basically get a sandboxed alpine environment
 
Can they put telnet back in?

People who do work in the terminal sometimes have to check if something is running manually...
 
Part of my issue is I don't fully understand what "24-bit color and Powerline fonts" brings in the way of useful enhancements.

You can use this script to showcase the color support in the terminal:

Bash:
awk -v term_cols="${width:-$(tput cols || echo 80)}" 'BEGIN{
    s="/\\";
    for (colnum = 0; colnum<term_cols; colnum++) {
        r = 255-(colnum*255/term_cols);
        g = (colnum*510/term_cols);
        b = (colnum*255/term_cols);
        if (g>255) g = 510-g;
        printf "\033[48;2;%d;%d;%dm", r,g,b;
        printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b;
        printf "%s\033[0m", substr(s,colnum%2+1,1);
    }
    printf "\n";
}'

This is the output on iTerm2:

1750078031157-png.2520595


This is on the default Terminal App:

1750077985980.png


Nice to have more colors available.

About "powerline fonts" I assume it's better support for Nerd Fonts, which use font characters to represent various otherwise "graphical" stuff. E.g. this is my NeoVim status line in iTerm2:

1750078093088.png


This is how it's represented in Terminal App:

1750077769736.png


Both use Meslo LGS Nerd Font Mono but the Terminal App seem to display some parts wrong.
 

Attachments

  • 1750078031157.png
    1750078031157.png
    43.3 KB · Views: 295
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.