Linux preferences

This commit is contained in:
Marley Rae 2024-02-02 18:09:34 -08:00
parent 56f5e407b9
commit 63275d348a
3 changed files with 16 additions and 1 deletions

5
os/linux.fish Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env fish
find "$DOT/os/linux/" -name "*.pref.fish" | while read file
fish -c "$file"
end

8
os/linux/privacy.pref.fish Executable file
View file

@ -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"

View file

@ -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