This file contains 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
##### やったあと再起動をお忘れずに。 ##### | |
##### REQUIRES REBOOT TO TAKE EFFECT ##### | |
##### Stop Rechecking Application and DMG hashes ##### | |
##### アプリ・DMGの完全性検査を自動的にやらないこと ##### | |
defaults write com.apple.LaunchServices LSQuarantine -bool NO | |
##### Whitelist VSTs / AUs ##### | |
##### 全部 VST・AU プラグインを「安全検査済」と表記する ##### | |
sudo find /Library/Audio/Plug-Ins/VST/ -iname "*.vst/" -exec xattr -rd com.apple.quarantine '{}' \; | |
sudo find /Library/Audio/Plug-Ins/VST3/ -iname "*.vst3/" -exec xattr -rd com.apple.quarantine '{}' \; | |
sudo find /Library/Audio/Plug-Ins/Components/ -iname "*.component/" -exec xattr -rd com.apple.quarantine '{}' \; | |
##### Whitelist Input Methods ##### | |
##### 入力方法を「安全検査済」と表記する ##### | |
sudo find "/Library/Input Methods/" -iname "*.app/" -exec xattr -rd com.apple.quarantine '{}' \; | |
##### Whitelist Applications in "/Applications/" ##### | |
##### 「/Applications/」にある全部アプリを「安全検査済」と表記する ##### | |
sudo find "/Applications/" -iname "*.app/" -exec xattr -rd com.apple.quarantine '{}' \; | |
##### Whitelist Applications in "~/Applications/" ##### | |
##### 「~/Applications/」にある全部アプリを「安全検査済」と表記する ##### | |
find ~/Applications -iname "*.app/" -exec sudo xattr -rd com.apple.quarantine '{}' \; | |
##### Whitelist CrossOver and its bottle contents ##### | |
##### CrossOver とそこにある全部 Windows アプリを「安全検査済」と表記する ##### | |
find ~/Library/Application\ Support/CrossOver/ -iname "*.exe/" -exec sudo xattr -rd com.apple.quarantine '{}' \; | |
find ~/Library/Application\ Support/CrossOver/ -iname "*.dll/" -exec sudo xattr -rd com.apple.quarantine '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment