Finder has a great way of organizing items and it’s called tags. By default, Finder has 7 various colored tags, but they are not very helpful because they lack context and meaning. Fortunately, you can customize the tags to fit your needs.
So how to add more customer tag colors on Mac? The colors for tags are limited to the palette limited by Apple. While color choice is limited one can add more tags by following these steps:
Your Mac has a palette of millions of colors for you to choose from. 2 Hold your mouse button down and move the pointer over the color wheel. A preview of the color appears in the box at the top of the window. Macintosh Color Classic MYSTIC Apple IIe 36MB RAM 18GB HD 68040 Vintage Rare Mac. $1,499.99 + $100.00 shipping.
Here are the screenshots with the same steps:
You can also change the names of the tags, add new ones and delete those that do not make sense for you.
As you understand already tags can be customized so it makes sense to invest some time about proper organization so you can always group the files and find them easily when needed.
Here is an example of the tags system I developed for myself. Note that some tags have checks next to them and some not. You can always hide and unhide tags as needed. The tags that are displayed in the Sidebar have checks next to them.
Once you created all the tags you like you can assign one or more tags to any file or folder. Use Command-I shortcut to bring file information dialog and in the first box “Tags” select the tags.
Yes, the Finder allows to add as many tags as needed for each file. When searching those files will appear in all groups they were tagged for.
To add tags to the multiple files first select them in the Finder. Then right click on the selection and click on the tags at the bottom of the pop up screen.
Sometimes the Finder does not display all tags. In this case click on Tags… option and then on Show All. Select the required tags from the drop down. After adding all tags hit Enter.
To quickly find the files under specific tag you can use Tags section in the Sidebar.
If the tag does not appear either add it to the Sidebar or click on All Tags and then click on the required tag to see all files which have the tag assigned.
Siri is one of the most easiest ways to find any file. To find a tagged file just start Siri and ask it following: “Find all files with tag Work”
When the files appear in the Finder they will show all tags they have been assigned.
If the tag does not appear in the Sidebar you can add them in Finder Preferences:
Alternatively, click on All Tags option to see all tags. Then drag the tag to the Sidebar.
If the Sidebar itself does not appear in the Finder then you can always turn it on from the Finder menu or by using key combination.
Key Combination
Use Command+Option+S key combination to hide/show Sidebar.
Read more here about the Finder in the tutorial I wrote: Windows Explorer for Mac – Easy Guide For PC Switchers
Topics:
MacOS is awesome for command line stuff, that’s why real Java programmers love it. But some of the defaults Apple have used make me sad. Where are all the colors? I demand my ls command
be pretty and colorful!
I have seen several options on the web on how to adjust colors but some, albeit very good ones, make me uncomfortable with the type of installations that have to be performed in order to enable these themes.
So, after some digging and reading man pages
on terminal coloring and ls
I found a super-simple solution for decent terminal coloring.
ls
Open Terminal Window. You should see the color scheme like this:
Command: $ vi ~/.bash_profile
and Enter Below lines and save file.
2 4 6 | export CLICOLOR=1 export GREP_OPTIONS='--color=auto' |
Command: $ source ~/.bash_profile
to initialize profile in current window.
You should see color now:
Add some more coloring
. Keep previously added lines and add these extra lines. This gives you a nice colored prompt.
2 | PS1='[e[0;33m]u[e[0m]@[e[0;32m]h[e[0m]:[e[0;34m]w[e[0m]$ ' |
And you should see color for username and command line prompt:
I hope this helps you change terminal window colors easily.
If you liked this article, then please share it on social media. Still have any questions about an article, leave us a comment.