We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To override the default output you have
function notify_formatted { ## $1=exit_status, $2=command, $3=elapsed_time [ $1 -eq 0 ] && title="Holy Smokes Batman!" || title="Holy Graf Zeppelin!" bgnotify "$title -- after $3 s" "$2"; }
but I think the function name should be bgnotify_formatted
bgnotify_formatted
function bgnotify_formatted { ## $1=exit_status, $2=command, $3=elapsed_time [ $1 -eq 0 ] && title="Great Success!" || title="Epic Fail!" bgnotify "$title -- after $3 s" "$2"; }
I was getting the default output message until I renamed the function in my ~/.zshrc
~/.zshrc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To override the default output you have
but I think the function name should be
bgnotify_formatted
I was getting the default output message until I renamed the function in my
~/.zshrc
The text was updated successfully, but these errors were encountered: