From 63275d348a66f019e1a3868856f6e1c50870892d Mon Sep 17 00:00:00 2001 From: Marley Rae Date: Fri, 2 Feb 2024 18:09:34 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Linux=20preferences?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- os/linux.fish | 5 +++++ os/linux/privacy.pref.fish | 8 ++++++++ os/macos.fish | 4 +++- 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100755 os/linux.fish create mode 100755 os/linux/privacy.pref.fish 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