My tagged files do not show up.
You have to select a tag by clicking it. If your tagged files still do not show up, make sure that Spotlight is working. You can do that by searching for the file using the OS X Spotlight search panel on the top right of your screen.
I cannot find the Tags Folder.
The Tags Folder is located in your 'Documents/Punakea' folder by default, you can also specify the location in the preferences.
How can I rebuild the Spotlight Index?
Have a look at this article in the Apple knowledge base, which describes a method to rebuild the Spotlight index using the system preferences. For those of you who are more inclined to work on the command line, your can simply open your terminal and execute this:
sudo mdutil -E /path_to_volumeHow does Punakea add tags to files?
Punakea uses OpenMeta, which is an emerging tagging standard used by a lot of other applications for tagging, e.g. Leap, Deep, Default Folder X, Tags, and more.
OpenMeta uses a file system feature called 'extended attributes' (or 'xattr' for short), that allows arbitrary data to be stored alongside a file, very useful for metadata. Data stored in a special xattr domain is indexed by Spotlight, which is then used to find tagged files. You can see which xattrs are on a file by executing the following command in the terminal:
The data in the Spotlight DB can be accessed by the following command:
OpenMeta uses a file system feature called 'extended attributes' (or 'xattr' for short), that allows arbitrary data to be stored alongside a file, very useful for metadata. Data stored in a special xattr domain is indexed by Spotlight, which is then used to find tagged files. You can see which xattrs are on a file by executing the following command in the terminal:
xattr -l /path/to/fileThe data in the Spotlight DB can be accessed by the following command:
mdls /path/to/file


