https://github.com/moxwel/winlabeler
Tool for creating custom Windows folder icons and labels.
https://github.com/moxwel/winlabeler
collaborate communityexchange custom-icons customization folder-icons folders icons imagemagick learn personalization python windows windows10
Last synced: 8 months ago
JSON representation
Tool for creating custom Windows folder icons and labels.
- Host: GitHub
- URL: https://github.com/moxwel/winlabeler
- Owner: moxwel
- License: mit
- Created: 2023-07-06T05:34:25.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T21:35:39.000Z (almost 3 years ago)
- Last Synced: 2024-09-28T22:23:27.018Z (over 1 year ago)
- Topics: collaborate, communityexchange, custom-icons, customization, folder-icons, folders, icons, imagemagick, learn, personalization, python, windows, windows10
- Language: Python
- Homepage:
- Size: 206 KB
- Stars: 16
- Watchers: 2
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

# WinLabeler
The easiest way to create your own custom Windows folder icons.
## 🚧 In development 🚧
This project is still in development. **But there is already a working prototype.**
## How to use
> 💡 You need ImageMagick installed on your computer. You can download it [here](https://imagemagick.org/script/download.php).
First install Wand:
```bash
pip install Wand
```
Then, run the script:
---
```bash
python winLabeler.py "C:\Users\User\example.png"
```
###### Output name will be "out.ico" by default. Program will use a folder for the small icon by default
---
```bash
python winLabeler.py "C:\Users\User\example.png" -ns
```
###### Output name will be "out.ico" by default. Program will not use a folder for the small icon
---
```bash
python winLabeler.py "C:\Users\User\example.png" -ns -o "my_icon.ico"
```
###### Output name will be "my_icon.ico". Program will not use a folder for the small icon
---
## What `-ns` does
`-ns` stands for "no small folder". It means that the program will not use a folder for the small icon.
Here is an example of the difference:

> âš Expect some bugs. This is sill a **proof of concept**.