This file contains 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/env python3 | |
from pluslib import ChicagoPlus | |
import logging | |
import sys | |
from PIL import Image, ImageFont, ImageDraw, ImageEnhance, ImageOps | |
from pprint import pprint | |
import struct | |
import subprocess | |
import os |
This file contains 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/env python3 | |
import os | |
import sys | |
import csv | |
import requests | |
import datetime | |
from pprint import pprint | |
from internetarchive import upload |
This file contains 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
import sys | |
import os | |
import collections | |
import PIL.Image | |
import svgwrite | |
import pathlib | |
import shutil | |
import subprocess | |
import argparse | |
import logging |
This file contains 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
import sys | |
import os | |
import collections | |
import PIL.Image | |
import svgwrite | |
import pathlib | |
import shutil | |
import subprocess | |
import argparse | |
import logging |
This file contains 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
import sys | |
import os | |
import collections | |
import PIL.Image | |
import svgwrite | |
import pathlib | |
import shutil | |
import subprocess | |
import argparse | |
import logging |
This file contains 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 | |
# -*- coding: utf-8 -*- | |
# Tool to parse and generate new Chicago95 themes based on Microsoft Theme files | |
# Parses ANI and ICO files, installs Icons/Theme and fonts | |
# Auto changes your theme | |
# Thanks to png2svg for icon converter and Fierelier for recoloring script | |
# Requires: | |
# - Inkscape | |
# - Imagemagick |
This file contains 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 | |
# -*- coding: utf-8 -*- | |
import sys | |
import os | |
import collections | |
import PIL.Image | |
import svgwrite | |
import pathlib | |
import shutil |
This file contains 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/env python3 | |
# License GPL3 | |
# Parse Windows .theme files | |
# Notes: Does not work with theme names with spaces in the title | |
# To parse the config | |
import configparser | |
import sys |
This file contains 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/env python3 | |
import sys | |
import os | |
import subprocess | |
import shutil | |
# Properly convert a Microsoft ANI file to Icon and PNG | |
# The filename is made up of: [icon file name]_[rate in jiffies]_[sequence].png | |
# GPL 3.0 |