lgarron / folderify

:file_folder: Generate pixel-perfect macOS folder icons in the native style.
MIT License
1.5k stars 36 forks source link

Add option change directory color and set style all sub-directory #79

Closed boyseez closed 9 months ago

boyseez commented 11 months ago

Is it possible to add color to a directory?

Is it possible to set the style of subdirectories of a parent folder?

lgarron commented 11 months ago

Could you specify what this looks like?

https://github.com/lgarron/folderify/issues/72 tracks adding folder icon coloring, and I'm not aware of any relevant macOS features for this.

If you want to apply a particular folder icon to all folders in a tree, this could be very inefficient, and I doubt I would implement it in folderify directly. You should be able to do it easily with a script, though.

lgarron commented 9 months ago

You should be able to do it easily with a script, though.

Here's an example script in fish that assigns the same icon to all nested folders in the current path:

brew install folderify fileicon
folderify icon.png
for FOLDER in (find . -type d)
  fileicon set $FOLDER icon.icns
end