Skip to content

Instantly share code, notes, and snippets.

@paranormal
Created October 12, 2013 14:10
Show Gist options
  • Save paranormal/6950395 to your computer and use it in GitHub Desktop.
Save paranormal/6950395 to your computer and use it in GitHub Desktop.
#!/bin/sh
#######################################################################
# Godzilla FlameWolf run script #
# Usage: ./basename [profile_name] #
# Without profile name it runs default profile #
#######################################################################
WOLF_DEN="${HOME}/.mozilla/firefox"
profile=$1
flags=''
if [ $profile ]; then
profile="-P ${profile}"
flags='-no-remote'
fi
firefox ${flags} ${profile}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment