https://github.com/bglezseoane/folder-stamp
Generate custom Mac OS folder icons with a desired image as stamp
https://github.com/bglezseoane/folder-stamp
customization finder folders icons macos
Last synced: about 1 year ago
JSON representation
Generate custom Mac OS folder icons with a desired image as stamp
- Host: GitHub
- URL: https://github.com/bglezseoane/folder-stamp
- Owner: bglezseoane
- License: mit
- Created: 2019-07-02T08:50:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T21:34:33.000Z (almost 3 years ago)
- Last Synced: 2025-04-14T15:49:58.948Z (about 1 year ago)
- Topics: customization, finder, folders, icons, macos
- Language: Python
- Homepage:
- Size: 1.26 MB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# folder-stamp
Generate custom macOS folder icons with a desired image as stamp.
## Some examples
The most simply use:
```sh
folstamp apple.png output.png
```

Using a green folder icon:
```sh
folstamp apple.png -rgb 84 151 93 green_folder.png output.png
```

## To set up
You can use Homebrew to install this program via my tap repository:
```sh
brew install glezseoane/homebrew-tap/folstamp
```
You also can use PyPI to install this program:
```sh
pip install folstamp
```
Alternative, clone and go to this repository home directory, and then run:
```sh
python setup.py install
```
Both methods install last **Folstamp** stable version on your machine.
## To use
The command has to verify:
- The input path is always the first argument and it is mandatory.
- The output path is always the last argument and it is mandatory.
Read the man of this tool to known more about its use.
> Note about man pages: if you use `pip` method to install this program, assert that man directories of your python environment are added to your `MANPATH` to can get this program's man pages with the `man` command. Python might install man pages in default machine level directories.