Skip to content

Instantly share code, notes, and snippets.

@ZenBerry
ZenBerry / gist:d60b11c9503c365bab7212ac2446e1af
Last active January 30, 2026 23:49
info.zenberry simple helper in terminal
# Add this to ~/.zshrc:
function chpwd() {
if [ -f info.zenberry ]; then
printf "\033[1minfo.zenberry:\033[0m %s\n" "$(cat info.zenberry)"
fi
}
# Then reload: source ~/.zshrc
# This will print the contents of info.zenberry every time you cd into a folder that has this file inside. Useful for quickly reminding yourself how to start your app properly etc.