Created
January 29, 2026 19:03
-
-
Save patham9/487ca71399b6febdbaff6df8e121fe09 to your computer and use it in GitHub Desktop.
Make firefox "normal"/usable from shell on Mac
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
| 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