Created
September 3, 2025 01:21
-
-
Save katagaki/19fcc8cda4e580a398b72b25b0c03da3 to your computer and use it in GitHub Desktop.
Force Liquid Glass on/off for all apps on macOS 26+
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 | |
| rm domains.txt | |
| echo Set global default for Liquid Glass | |
| defaults write -g com.apple.SwiftUI.IgnoreSolariumLinkedOnCheck -bool TRUE | |
| # Change to FALSE or defaults delete -g com.apple.SwiftUI.IgnoreSolariumLinkedOnCheck to disable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment