Skip to content

Instantly share code, notes, and snippets.

@drewrothstein
Forked from msbarry/woof.bash
Last active October 30, 2015 09:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewrothstein/c6d5cf8f80629f8399fb to your computer and use it in GitHub Desktop.
Save drewrothstein/c6d5cf8f80629f8399fb to your computer and use it in GitHub Desktop.
# Some utilities for sending notifiations to yourself from the command line (mac only).
# Just add them to your ~/.bashrc and fill in these parameters.
# See them all in action: "ugh <long running command> && woof command succeeed || woof command failed"
TWITTER_HANDLE= # twitter handle
EMAIL_ADDRESS= # email address
CELL_EMAIL_ADDRESS= # email address for your cell phone (ie 1234567890@vtext.com)
TERMINAL_APP="com.apple.Terminal" # replace with iterm if you use that
THEME_SONG="~/waiting.mp3" # replace with a path to your theme song
# play music file in THEME_SONG continuously
playmusic() {
if [ ! -f ${THEME_SONG} ]
then
echo "You need to download a theme song to ${THEME_SONG}. We recommend the jeopardy theme"
else
while :; do afplay ${THEME_SONG}; done;
fi
}
# Play your theme song until a command finishes
# Usage: ugh git status
ugh() {
playmusic &
tokill=$!
echo $tokill
$*;
kill $tokill
killall afplay
}
# Display a growl notification (install https://github.com/alloy/terminal-notifier first)
# Usage: notify your job just finished
notify() {
terminal-notifier -title "$*" -message "$*" -activate ${TERMINAL_APP} # replace with iterm if you use that
}
# Send yourself a text
# Usage: text your job just finished
text() {
echo "$*" | mail -s "" ${CELL_EMAIL_ADDRESS}
}
# Send a tweet (set up https://github.com/twitter/twurl first)
# Usage: tweet my job just finished
tweet() {
twurl -d "status=$*" /1.1/statuses/update.json
}
# Send yourself a twitter direct message (set up https://github.com/twitter/twurl first)
# Usage: dm_me your job just finished
dm_me() {
twurl -d "text=$*&screen_name=${TWITTER_HANDLE}" /1.1/direct_messages/new.json
}
# Send yourself an email
# Usage: email your job just finished
email() {
echo "$*" | mail -s "" ${EMAIL_ADDRESS}
}
# Also note that the "say" command is built into mac osx
# Usage: say your job just finished
# Send yourself a message by all available means
# Usage: woof your job just finished
woof() {
email $*
dm_me $*
text $*
notify $*
say $*
# uncomment this if you want to tweet as well:
# tweet $*
}
@sudeshjethoe
Copy link

Is this like, chatops 0.1 :P?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment