Skip to content

Instantly share code, notes, and snippets.

@tonylambiris
Created September 11, 2019 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonylambiris/c0501f38b72754df83af4881a5144fcf to your computer and use it in GitHub Desktop.
Save tonylambiris/c0501f38b72754df83af4881a5144fcf to your computer and use it in GitHub Desktop.
Disable Tracker in GNOME
#!/bin/sh
for i in /etc/xdg/autostart/tracker-*.desktop; do
echo -e "Hidden=true" | sudo tee --append "$i" >/dev/null
done
gsettings set org.freedesktop.Tracker.Miner.Files crawling-interval -2
gsettings set org.freedesktop.Tracker.Miner.Files enable-monitors false
tracker reset --hard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment