Skip to content

Instantly share code, notes, and snippets.

@josuebasurto
Last active March 6, 2019 05:58
Show Gist options
  • Save josuebasurto/e8a7da19b9bc3b238ed6067eb0031aad to your computer and use it in GitHub Desktop.
Save josuebasurto/e8a7da19b9bc3b238ed6067eb0031aad to your computer and use it in GitHub Desktop.
Remove Android File Transfer from running automatically
PID=$(ps -fe | grep "[A]ndroid File Transfer Agent" | awk '{print $2}'); if [[ -n $PID ]]; then kill $PID; fi; mv "/Applications/Android File Transfer.app/Contents/Resources/Android File Transfer Agent.app" "/Applications/Android File Transfer.app/Contents/Resources/Android File Transfer Agent DISABLED.app"; mv "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app" "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent DISABLED.app"; osascript -e 'tell application "System Events" to delete every login item whose name is "Android File Transfer Agent"'
@josuebasurto
Copy link
Author

From https://gist.github.com/zeroseis/ce66d4c6b776577442a6
PID=$(ps -fe | grep "[A]ndroid File Transfer Agent" | awk '{print $2}'); if [[ -n $PID ]]; then kill $PID; fi; mv "/Applications/Android File Transfer.app/Contents/Resources/Android File Transfer Agent.app" "/Applications/Android File Transfer.app/Contents/Resources/Android File Transfer Agent DISABLED.app"; mv "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app" "${HOME}/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent DISABLED.app"; osascript -e 'tell application "System Events" to delete every login item whose name is "Android File Transfer Agent"'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment