Last active
November 28, 2017 05:34
-
-
Save takuzoo3868/c10f57c4a097f29ea69e5fad067c500d 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
#!/bin/sh | |
# コミットに達成感が欲しかったんじゃ | |
# pushすると /Music/git_commit.wav に保存した音声が鳴ります | |
# prevent double startup | |
if [ $(pgrep aplay) ] ; then | |
exit 1 | |
fi | |
aplay -q ~/Music/git_commit.wav > /dev/null 2>&1 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use