Skip to content

Instantly share code, notes, and snippets.

View ghall89's full-sized avatar

Graham Hall ghall89

View GitHub Profile
@katagaki
katagaki / LiquidGlass.sh
Created September 3, 2025 01:21
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