dotfiles/os/macos/safari.pref.fish
2024-02-04 16:00:19 -08:00

16 lines
500 B
Fish
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env fish
source "$DOT/script/utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_subtitle Safari
execute "defaults write com.apple.Safari SuppressSearchSuggestions -bool true && \
defaults write com.apple.Safari UniversalSearchEnabled -bool false" \
"Dont send search queries to Apple"
execute "defaults write com.apple.Safari SendDoNotTrackHTTPHeader -bool true" \
"Enable 'Do Not Track'"
killall Safari &>/dev/null