This one just does your home folder (and all of its subfolders):

find -x ~ -name .DS_Store -exec rm -fv {} +

I used "-exec rm -fv {} +" instead of "-delete" there, so you'd get full visual feedback/confirmation.

[i'd advise restarting right after, just in case Finder caches some of that stuff in RAM.]