I'm running into an issue with hiding my computer name. I want all terminal outputs on my mac (iTerm ->zsh & IntelliJ) to stop showing my computer name and show ~/. Can someone help me achieve this, I'm not sure what setting I'm looking to change.
ie.
From
users/ComputerName/app/src/main/java/com/virtualprodigy/android_compose_template
To
~/app/src/main/java/com/virtualprodigy/android_compose_template
You can change the prompt in your terminal to display ~ instead of the full path by modifying your shell's configuration file.
For zsh, you can add the following line to your ~/.zshrc file:
For bash, you can add this line to your ~/.bash_profile or ~/.bashrc file:
This will change the prompt to display only the current directory, represented by ~ for the home directory, and the command prompt symbol ($ for normal users, # for superusers).
You will need to either restart your terminal, or run the command
source ~/.zshrc
orsource ~/.bashrc
to apply the changes.