This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A Python script to organizes your desktop files | |
| # by file type, mimicking macOS Stacks | |
| import argparse | |
| import os | |
| import shutil | |
| from tqdm import tqdm | |
| from typing import List | |
| import re |