Non-sticky notes for your terminal made with Go and Bubbletea.
For the longest time, I kept a simple memo.md file in my home directory to quickly jot down thoughts from meetings, ideas, or random notes.
These weren’t structured enough for my main note-taking app (Obsidian), and I wanted something quick and dirty I could just be done with, so I made this.
- ✨ Create, edit, and delete memos.
- 🔍 Filter and search through memos.
- ⌨️ Keyboard-driven interface.
- 💾 Persistent storage in JSON format.
- 🗑️ Deleted memos are wiped after 7 days.
For Linux 64-bit:
curl -sL https://github.com/commitsovercoffee/yellow/releases/download/v1.1.0/yellow-linux-amd64 -o yellow && chmod +x yellow && sudo mv yellow /usr/local/bin/For macOS Intel (64-bit):
curl -sL https://github.com/commitsovercoffee/yellow/releases/download/v1.1.0/yellow-darwin-amd64 -o yellow && chmod +x yellow && sudo mv yellow /usr/local/bin/For macOS Apple Silicon (arm64):
curl -sL https://github.com/commitsovercoffee/yellow/releases/download/v1.1.0/yellow-darwin-arm64 -o yellow && chmod +x yellow && sudo mv yellow /usr/local/bin/sudo rm /usr/local/bin/yellow # remove app
rm -rf ~/.config/yellow/ # remove data (Optional)This project is open source and available under the AGPL-3.0 license.