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." |
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/bash | |
| # (c) @stilldg | |
| # Exit on any error | |
| set -e | |
| echo "merging from dev -> main..." | |
| # Store current branch |
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
| find . -name '.DS_Store' -type f -delete |