this installs to C:\Program Files\FolderLens and adds context menu entry. FolderLens/ ├── main.py # entry point, cli ├── app.py # ui (customtkinter) ├── scanner.py # async folder scanner ├── ...
import customtkinter customtkinter.set_appearance_mode("System") # Modes: system (default), light, dark customtkinter.set_default_color_theme("blue") # Themes: blue ...