Skip to content

Instantly share code, notes, and snippets.

@katagaki
Created September 3, 2025 01:21
Show Gist options
  • Select an option

  • Save katagaki/19fcc8cda4e580a398b72b25b0c03da3 to your computer and use it in GitHub Desktop.

Select an option

Save katagaki/19fcc8cda4e580a398b72b25b0c03da3 to your computer and use it in GitHub Desktop.
Force Liquid Glass on/off for all apps on macOS 26+
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