diff --git a/os/linux.fish b/os/linux.fish new file mode 100755 index 0000000..644fc83 --- /dev/null +++ b/os/linux.fish @@ -0,0 +1,5 @@ +#!/usr/bin/env fish + +find "$DOT/os/linux/" -name "*.pref.fish" | while read file + fish -c "$file" +end diff --git a/os/linux/privacy.pref.fish b/os/linux/privacy.pref.fish new file mode 100755 index 0000000..8cc60d8 --- /dev/null +++ b/os/linux/privacy.pref.fish @@ -0,0 +1,8 @@ +#!/usr/bin/env fish + +source "$DOT/script/utils.fish" + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +execute "gsettings set com.canonical.Unity.Lenses remote-content-search 'none'" \ + "Turn off 'Remote Search' so that search terms in Dash do not get sent over the internet" diff --git a/os/macos.fish b/os/macos.fish index a6ca77c..b2b2ab0 100755 --- a/os/macos.fish +++ b/os/macos.fish @@ -2,4 +2,6 @@ "$DOT/os/macos/close_prefs.applescript" -find "$DOT/os/macos/" -name "*.pref.fish" | while read file; fish -c "$file"; end +find "$DOT/os/macos/" -name "*.pref.fish" | while read file + fish -c "$file" +end