I'm trying to figure out the best permissions configuration for my home folder in Sierra.
Would executing this make sense:
sudo chown -v -R $(whoami) ~/* && sudo chown -v -R $(whoami) ~/.*;
sudo find ~/.* -type f -print -exec chmod -v -R 640 {} \;
sudo find ~/.* -type f -print -exec chmod -v -R 750 {} \;
I'm looking for everything to work, but I want to restrict access as much as possible. My permissions were set to read-only to "Everyone" (no idea why).

