Currently it is displayed as follows
export PS1='${white}[\t] ${blue}\W:${red}$(__git_ps1)${white} \$ '

I’d like to experiment with the same set up, but time displayed in the right most corner.
How can i modify my PS1 export for this to happen please?
Don’t think there’s any way to right justify items on the prompt using
PS1in bash (pretty sure there’s easy ways to do this in zsh though). You can try writing a function for thePROMPT_COMMANDenvironment variable and have it print the time with right justify, something along the lines of:Here, the
\e[1;37mis the “white” color.