Skip to content

Instantly share code, notes, and snippets.

@patham9
Created January 29, 2026 19:03
Show Gist options
  • Select an option

  • Save patham9/487ca71399b6febdbaff6df8e121fe09 to your computer and use it in GitHub Desktop.

Select an option

Save patham9/487ca71399b6febdbaff6df8e121fe09 to your computer and use it in GitHub Desktop.
Make firefox "normal"/usable from shell on Mac
sudo rm -f /usr/local/bin/firefox && \
sudo tee /usr/local/bin/firefox >/dev/null <<'EOF'
#!/bin/bash
exec open -a Firefox "$@"
EOF
sudo chmod +x /usr/local/bin/firefox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment