Created
June 21, 2025 22:25
-
-
Save stilldg/72d2d1c7477ec20a8860af69302feba6 to your computer and use it in GitHub Desktop.
Chromium/LibreWolf is damaged and can't be openend (brew/homebrew) fix
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
| #!/bin/sh | |
| # how it works: | |
| # xattr -cr clears all extended attributes of a file, including com.apple.quarantine | |
| # this attribute prevents files downloaded from the internet from opening | |
| # run these on cli | |
| xattr -cr /Applications/Chromium.app | |
| xattr -cr /Applications/LibreWolf.app | |
| echo "Done! Chromium/LibreWolf should now open." | |
| # any others you are having issues with try them |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment