Skip to content

Instantly share code, notes, and snippets.

@ZenBerry
Last active January 30, 2026 23:49
Show Gist options
  • Select an option

  • Save ZenBerry/d60b11c9503c365bab7212ac2446e1af to your computer and use it in GitHub Desktop.

Select an option

Save ZenBerry/d60b11c9503c365bab7212ac2446e1af to your computer and use it in GitHub Desktop.
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment