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
/*---------------------------------- | |
* Custom CSS Styles | |
* Derivative from https://github.com/glennraya | |
* https://github.com/glennraya/vscode-settings-json/blob/main/custom-vscode.css | |
*--------------------------------- */ | |
:root { | |
--transition: opacity 0.3s !important; | |
} | |
.codicon { color:#90846b !important; } | |
.codicon.outline-element-icon { display:none; } |
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
#!/usr/bin/python3 | |
""" | |
Sort Photos by Month. | |
install python3-pil | |
""" | |
import logging, datetime | |
import argparse, os, sys | |
import hashlib | |
from PIL import Image |