Skip to content

Instantly share code, notes, and snippets.

@sirkkalap
Created January 28, 2016 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sirkkalap/277f35cc84c6a873d737 to your computer and use it in GitHub Desktop.
Save sirkkalap/277f35cc84c6a873d737 to your computer and use it in GitHub Desktop.
Open the company HipChat without "Chrome chrome"
#!/bin/sh
# OS X
chrome=/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
if [ -e $chrome ]; then
$chrome --app=https://company.hipchat.com/chat/lobby
else
echo $chrome is required but not found.
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment