In the Finder, the Applications directory has an option to sort by "Application Category," which splits apps into groups like Productivity, Social Networking, Music, etc.

I have a number of apps listed under "Other" which I would like to assign to one of these other less-generic categories. Is it possible to change this? I looked in the Get Info window and don't see anything about the category listed.
xattr- but you can use mdls to dump the kMDItemAppStoreCategory metadata for an app to see the value Finder is using to sort these values. This command will show you the counts of the apps in /Applications so you can match it with what Finder is reporting:mdls -name kMDItemAppStoreCategory /Applications/* | sort | uniq -c– bmike♦ Nov 21 '12 at 15:15