Skip to content

Instantly share code, notes, and snippets.

@dhruvasagar
Last active March 2, 2026 08:56
Show Gist options
  • Select an option

  • Save dhruvasagar/8fe4733703d85c857bdafe2c57046051 to your computer and use it in GitHub Desktop.

Select an option

Save dhruvasagar/8fe4733703d85c857bdafe2c57046051 to your computer and use it in GitHub Desktop.
play_faah() {
local exit_code=$?
if [ $exit_code -ne 0 ]; then
# For macos
afplay ~/Music/faaa.mp3 > /dev/null 2>&1 &!
# For Linux (requires alsa-utils or pulseaudio-utils)
# aplay ~/Music/faah.mp3 &
fi
}
autoload -Uz add-zsh-hook
add-zsh-hook precmd play_faah
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment