MacOS Monterey comes with ZSH and I use it with Hyper, an Electron-based terminal.
The terminal theme I use is called Material Shell and can be installed across all MacOS terminals with oh-my-zsh.
Install oh-my-zsh with:
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"And install the Material Shell theme with:
curl -L -o ~/.oh-my-zsh/custom/themes/materialshell.zsh-theme https://raw.githubusercontent.com/carloscuesta/materialshell/master/materialshell.zshAdd this line to your ~/.zshrc file: ZSH_THEME="materialshell" and restart all terminal windows.
To add this theme to Hyper, add hyper-materialshell to your list of Hyper plugins in ~/.hyper.js:
plugins: ['hyper-materialshell']If you want new tabs or panes to open in the same directory as the current tab or pane, I use HyperCwd in which case you can add hypercwd to your plugins list in ~/.hyper.js.