Last active
April 16, 2018 22:39
-
-
Save thecodewarrior/d6777e43f61586482f6a4569dc21e95a to your computer and use it in GitHub Desktop.
Two scripts to completely disable and reenable iTunes on macOS - http://bit.do/iTunesDisable
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 | |
| echo "Clearing executable bit for iTunes binary" | |
| sudo chmod ugo-x /Applications/iTunes.app/Contents/MacOS |
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 | |
| echo "Setting executable bit for iTunes binary" | |
| sudo chmod ugo+x /Applications/iTunes.app/Contents/MacOS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment