-
Warp
Warp is a modern, Rust-based terminal with AI built in so you and your team can build great software, faster.
Note: it does seem at least some development happens in the open https://github.com/warpdotdev/Warp
> We are planning to first open-source our Rust UI framework, and then parts and potentially all of our client codebase. The server portion of Warp will remain closed-source for now.
https://github.com/warpdotdev/Warp/discussions/400
None of the server bits will be open, ever, but some of the UI code will be? Better than nothing.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
Recently I started using wave terminal [1] which has a somehow better ux and is also open source. It provides free access to GPT-4o mini (which is free for all without login I know) which ia handy for quick searches. It is working separate from your files and doesn't interact with it which is good compromise in my opinion.
[1] https://github.com/wavetermdev/waveterm
-
I set up notifications for a command finishing in my fish config. If you're interested in how it's set up.
https://github.com/yonatan8070/dotfiles/blob/master/fish/.co...
-
For those that have to bounce between Mac and Linux for work/personal reasons, I cannot recommend Kitty terminal enough.
The main thing that's a big of a pain is you'll probably want to set up a scrollback pager (I use neovim as mine but vim works too) so you easily search the terminal output and copy/paste from it.
I use
# https://github.com/kovidgoyal/kitty/issues/719#issuecomment-...
scrollback_pager nvim -u ~/.config/kitty/kitty-scrollback-pager.vimrc -c "silent write! /tmp/kitty_scrollback_buffer | te cat /tmp/kitty_scrollback_buffer -"
and the scrollback pager vimrc:
```