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
| echo Output defaults domains | |
| defaults domains > domains.txt | |
| echo Replace \', \' with new lines | |
| sed -i "" 's/, /\n/g' domains.txt | |
| echo Reset Liquid Glass defaults for apps | |
| while read d; do | |
| defaults delete "$d" com.apple.SwiftUI.IgnoreSolariumLinkedOnCheck | |
| done <domains.txt |