Skip to content

Instantly share code, notes, and snippets.

View dcrawbuck's full-sized avatar

Duncan Crawbuck dcrawbuck

View GitHub Profile
@dcrawbuck
dcrawbuck / desktop_stacks_organizer.py
Last active November 19, 2023 04:27
desktop_stacks_organizer.py
# 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