Last active
March 2, 2026 08:56
-
-
Save dhruvasagar/8fe4733703d85c857bdafe2c57046051 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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