Last active 1746613751

A small zsh/bash/terminal function that shows a note on top of your folder

folder_notes.md Raw
Place this bulk in your .bashrc or .zshrc file (or any other file that is sourced at terminal start. For this to work you need [eza](https://github.com/eza-community/eza) installed. Create a file named `.note` in any folder! Whatever you write will show on the top when your using the `ln` command. Remember to `source .zshrc` to make the function active. `ln() {[ -f .note ] && echo -e "📌 Note: $(cat .note)\n"; command eza -a -lOo "$@";}`