Skip to content

Instantly share code, notes, and snippets.

@jbl0ndie
Last active August 8, 2025 15:29
Show Gist options
  • Select an option

  • Save jbl0ndie/7f7952a6bb22f6d4969fb6915fce17df to your computer and use it in GitHub Desktop.

Select an option

Save jbl0ndie/7f7952a6bb22f6d4969fb6915fce17df to your computer and use it in GitHub Desktop.
Ignore MacOS folder from dropbox sync, if you've opted out of File Provider
# https://help.dropbox.com/sync/ignored-files#mac2
# file
xattr -w com.dropbox.ignored 1 '/Users/yourname/Dropbox (Personal)/YourFileName.pdf'
# all files in your folder, note trailing slash
xattr -w com.dropbox.ignored 1 '/Users/yourname/Dropbox (Personal)/your_folder/'
# to remove, delete the xattr, may need to restart Dropbox for it to see the change
xattr -d com.dropbox.ignored '/Users/yourname/Dropbox (Personal)/your_folder/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment