Skip to content

Instantly share code, notes, and snippets.

View Stephen-Harold's full-sized avatar

Stephen Harold Smith Stephen-Harold

  • ireland
View GitHub Profile
@Stephen-Harold
Stephen-Harold / zshrc
Created August 11, 2023 11:14
Edit your prompt (PS1) instantly without sourcing.
#!/bin/bash
# on MacOS
function precmd() {
PS1=$( ~/.promptFile $? );
}
# on Linux
function customPrompt() {
PS1=$( ~/.promptFile $? );