Compare commits

..

No commits in common. "main" and "archive/github-scratch" have entirely different histories.

1511 changed files with 154 additions and 35105 deletions

View file

@ -1,11 +0,0 @@
{
"permissions": {
"allow": [
"Bash(grep:*)",
"Bash(ls -1 Formula/*.rb)",
"Bash(ls:*)",
"Bash(find:*)",
"Bash(git ls-tree:*)"
]
}
}

View file

@ -1,31 +0,0 @@
---
name: custom-font-tap-project
description: Use when working in this repository, when the user asks about fonts, Homebrew formulae, the font tap, adding fonts, or the folder structure in font_files or Formula. Describes a Homebrew tap for custom fonts and the scripts that organize font folders and generate formulae.
---
# Custom Font Tap — Project context
**Canonical reference: read [PROJECT.md](../../../PROJECT.md) at the repo root.**
## What this repo is
- A **Homebrew tap** for a personal font collection. Users run `brew tap genet-godzilla/fonts ...` then `brew install font-<name>`.
- Fonts live in `font_files/font-<name>/` with exactly four subdirectories: `ttf/`, `otf/`, `web/`, `other_files/`.
## Rules
- **Do not edit `Formula/*.rb` by hand.** They are generated by `.fontfoldercleanup/create_homebrew_formula.py`.
- All font folders must use the `font-` prefix. Only `.ttf` in ttf/, `.otf` in otf/, web fonts (woff, woff2, eot, svg) in web/, everything else in other_files/.
- To add a font: run `uv run add-font <path_or_name>` (or add `font_files/font-<name>/`, run `cleanup_font_folders.py` then `create_homebrew_formula.py`). Validate with `uv run pytest tests/`.
## Scripts and CLI
- **add-font**`uv run add-font <path_or_name>`: add/update a font, runs cleanup + formula generator + tests. Optional: `uv tool install .` for global `add-font`.
- **cleanup_font_folders.py** (`.fontfoldercleanup/`) — Organizes font folders into ttf/, otf/, web/, other_files/. Run with `--path <dir>`.
- **create_homebrew_formula.py** (`.fontfoldercleanup/`) — Generates `Formula/font-<name>.rb` for every `font-*` folder in `font_files/`.
- **tests/**`uv run pytest tests/` validates every font (structure, formula exists, formula content).
## Quick commands (from repo root)
```bash
uv run add-font <path_or_name> # add or update a font
uv run pytest tests/ # run test suite
python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files
python3 .fontfoldercleanup/create_homebrew_formula.py
```

View file

@ -1,136 +0,0 @@
---
name: Tap refactor and font tests
overview: Refactor the tap so font_files is the single source of truth, add a test suite that validates every font (structure, formula presence, and optional install checks), fix formula generation (Ruby class names, per-formula tests), consolidate to one formula per font, and add a uv-managed add-font CLI for an easy add/update workflow.
todos: []
isProject: false
---
# Custom Font Tap Refactor and Test Plan
## Current state (summary)
- **124** font folders in `font_files/` (each `font-<name>/` with `ttf/`, `otf/`, `web/`, `other_files/`).
- **250** Formula files: ~125 named `font-<name>.rb` (from generator) and ~125 legacy `<name>.rb` (no `font-` prefix). One formula (`font-acrylichand.rb`) has no matching folder (folder is `font-acrylic-hand`).
- **Scripts:** `[.fontfoldercleanup/cleanup_font_folders.py](.fontfoldercleanup/cleanup_font_folders.py)` organizes folders; `[.fontfoldercleanup/create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py)` generates formulae. Formula class names use `.capitalize()` only, producing **invalid Ruby** for names with hyphens (e.g. `FontAcrylic-hand` — hyphen is minus in Ruby). Homebrew expects kebab-case filename → PascalCase class (e.g. `font-acrylic-hand.rb``FontAcrylicHand`).
- **No test suite.** Formulae have a generic `test do` that only checks share dirs exist, not that any font files were installed for that formula.
- **Add-font workflow** is manual: move folder, run cleanup, run formula generator, commit (see [PROJECT.md](PROJECT.md) § Workflows).
---
## 1. Single source of truth and Formula cleanup
- **Canonical list of fonts:** `font_files/` — every `font-*` directory is one font. Formula set must match exactly.
- **One formula per font**, named `**font-<name>.rb**` only. Remove legacy formulae that lack the `font-` prefix (e.g. `acrylic-hand.rb`, `idgrotesk.rb`) after ensuring the `font-<name>.rb` version exists and is correct. Optionally keep a one-time migration note or script that maps old names to `font-<name>` for users.
- **Fix orphan formula:** Either remove `font-acrylichand.rb` or treat it as alias for `font-acrylic-hand` (document and point to same font folder); recommend removing if it was a typo.
---
## 2. Formula generator fixes ([create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py))
- **Ruby class name:** Convert formula name (the part after `font-`) to a valid PascalCase constant:
- `acrylic-hand``AcrylicHand` (split on `-` and `_`, capitalize each segment, join).
- Class: `Font` + that (e.g. `FontAcrylicHand`). No hyphens in the class name.
- **Per-formula test block:** Generate a `test do` that asserts **at least one** of the expected install paths actually has a file for this formula (e.g. for a font that has only OTF, assert `(share/"fonts/opentype").glob("*.otf").any?` or equivalent). If a font has zero ttf/otf/web files, the test can assert the formulas `share/<formula_name>` dir exists and optionally that `other_files` content was installed. This makes “tests for every font” meaningful at the Homebrew level.
- **Optional:** Add a comment in the generated formula listing expected extensions (e.g. “TTF/OTF”) so humans and audits can see what the formula is supposed to install.
---
## 3. Tests for every font
Two layers: (A) repo-level tests that run without Homebrew install, (B) optional CI that runs Homebrew audits/installs.
### 3a. Repo-level test suite (Python, e.g. pytest)
- **Location:** e.g. `tests/` at repo root (or `.fontfoldercleanup/tests/` if you prefer to keep everything under the script dir).
- **Single source of truth:** Scan `font_files/` for all `font-*` directories.
- **For each font folder, test:**
- **Structure:** Exactly four subdirs: `ttf/`, `otf/`, `web/`, `other_files/`; no other top-level files or dirs (or treat “other” as error / move to `other_files` in cleanup).
- **At least one font file:** At least one of `ttf/*.ttf`, `otf/*.otf`, or `web/*.{woff,woff2,eot,svg}` exists (avoid “font” with only docs in `other_files` and no actual font).
- **Formula exists:** `Formula/font-<name>.rb` exists for that folder name.
- **Formula content (sanity):** Generated formula references the correct `font_files/font-<name>/` paths and correct formula name; optional: regex or simple parse to ensure class name is valid (PascalCase, no hyphen).
- **Global tests:**
- Every `Formula/font-*.rb` has a matching `font_files/font-<name>/` directory (no orphan formulae).
- No duplicate formula names (only one `font-<name>.rb` per name).
- **Implementation:** Parametrized tests (e.g. one test per font for structure, one per font for “formula exists”, etc.) so “EVERY” font is explicitly covered and failures report the font name. Use the same list of `font-*` dirs and the same naming rules as the formula generator so the suite and generator stay in sync.
### 3b. Homebrew-level checks (CI)
- `**brew audit`:** Run `brew audit --formula Formula/font-*.rb` (or equivalent) in CI to catch style and metadata issues. Fix any failures (e.g. empty `sha256`) where possible; for taps that dont publish bottles, audit may still flag missing sha256 — document or suppress as appropriate.
- **Optional “install” test:** For CI, either:
- Run `brew install --formula <formula>` for each `Formula/font-*.rb` (slow but validates install and the new per-formula test block), or
- Run install only for a small subset (e.g. 510 formulae) or on a schedule to keep CI fast. The repo-level tests above already validate structure and formula presence for every font.
Recommended: add a GitHub Actions workflow under `.github/workflows/` that (1) runs the Python test suite, (2) runs `brew audit` on `Formula/*.rb`, and (3) optionally runs a few `brew install` tests.
---
## 4. Easier add/update font workflow
- **Command-line tool `add-font`:** A CLI invocable as `add-font` (or `uv run add-font` from the repo). Use **uv** for dependency management; the tool is auto-installed when you use uv to run it (e.g. `uv run add-font` creates/uses the project venv and runs the entry point; no separate install step required). Optionally run `uv tool install .` from the repo for a global `add-font` on PATH. **Behavior:**
- **Add:** Accept a path to an unpacked font (folder or archive) or a name if the folder is already in `font_files/`. If path is given, copy/move into `font_files/font-<name>` (prompt or infer `<name>` from folder name), then run cleanup then formula generator.
- **Update:** If `font_files/font-<name>` already exists, run cleanup (to reorganize any new files) then formula generator.
- **Validation:** After changes, run the Python test suite (and optionally `brew audit` for touched formulae). Exit non-zero if tests fail.
- **Project layout:** Add `pyproject.toml` at repo root with a console script entry point, e.g. `add-font = "tap_cli.main:main"`. Python tooling (tests, add-font, existing scripts) lives under this uv-managed project.
- **Documentation:** Update [PROJECT.md](PROJECT.md) (and [.cursorrules](.cursorrules) / [.claude/skills/project-context/SKILL.md](.claude/skills/project-context/SKILL.md)) so the documented “add a font” flow is: (1) put files in `To Sort/` or pass path, (2) run `uv run add-font <path_or_name>` (or `add-font <path_or_name>` if installed via `uv tool install .`), (3) commit `font_files/font-<name>/` and `Formula/font-<name>.rb`. Document “regenerate all formulae” as running the formula generator then the test suite.
---
## 5. Implementation order (suggested)
1. **Formula generator:** Fix class name generation (PascalCase, no hyphens) and improve `test do` to assert at least one font file (or other_files) for that formula. Regenerate all formulae from current `font_files/`.
2. **Remove legacy and orphan formulae:** Delete formulae without `font-` prefix; remove or fix `font-acrylichand`. Ensure 1:1 mapping font folder ↔ `Formula/font-<name>.rb`.
3. **Repo-level test suite:** Add `tests/` (or equivalent), implement parametrized tests for every font (structure, at least one font file, formula exists, formula sanity). Run and fix any failures.
4. `**add-font` CLI (uv):** Add `pyproject.toml` with uv and a console script entry point `add-font`. Implement the CLI that runs cleanup, formula generator, and test suite; document `uv run add-font` (and optional `uv tool install .`) in PROJECT.md and related context files.
5. **CI:** Add GitHub Actions workflow for Python tests and `brew audit`; optionally add a small number of `brew install` jobs.
---
## 6. Diagram (high-level)
```mermaid
flowchart LR
subgraph sources [Single source of truth]
FontDirs["font_files/font-*"]
end
subgraph scripts [Scripts and CLI]
Cleanup["cleanup_font_folders.py"]
Generator["create_homebrew_formula.py"]
AddFont["add-font CLI"]
end
subgraph tests [Tests]
PyTests["Python tests (per font)"]
BrewAudit["brew audit"]
end
FontDirs --> Cleanup
FontDirs --> Generator
Cleanup --> FontDirs
Generator --> Formula["Formula/font-*.rb"]
AddFont --> Cleanup
AddFont --> Generator
AddFont --> PyTests
FontDirs --> PyTests
Formula --> PyTests
Formula --> BrewAudit
```
---
## 7. Files to add or change (concise)
| Area | Action |
| ---------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [.fontfoldercleanup/create_homebrew_formula.py](.fontfoldercleanup/create_homebrew_formula.py) | Add `formula_name_to_class(name)` (PascalCase); generate per-formula test that asserts installed files; use in `generate_formula_content`. |
| Formula/*.rb | Regenerate all; then remove legacy non`font-` formulae and fix/remove `font-acrylichand`. |
| tests/ | New: `conftest.py` or shared helper that discovers `font_files/font-*`; test_structure.py, test_formula_exists.py, test_no_orphan_formulae.py (all parametrized over font list). |
| pyproject.toml + add-font CLI | New: uv-managed project with console script `add-font`; CLI adds/updates one font, runs cleanup + generator + tests. Run via `uv run add-font` (auto-installed by uv). |
| .github/workflows/ | New: e.g. `tests.yml` — Python test suite + `brew audit` (+ optional install). |
| PROJECT.md, .cursorrules, .claude/.../SKILL.md | Update “Adding a new font” and “Regenerating” to reference `uv run add-font` and the test suite. |
This gives you **tests for every font** (structure + formula presence + optional install) and a **single, script-driven path** to add or update a font with automatic validation.

View file

@ -1,60 +0,0 @@
---
description:
globs:
alwaysApply: false
---
# Font Folder Structure Requirements
## Required Directory Structure
Each font folder must follow this structure:
```
font-[name]/
├── ttf/ # For .ttf font files
├── otf/ # For .otf font files
├── web/ # For web fonts (.woff, .woff2, .eot, .svg)
└── other_files/ # For all other files and folders
```
## Rules
1. All font folders must start with the prefix `font-`
2. Only these four directories are allowed at the root level of each font folder
3. Any files or folders that don't match the required structure must be moved to `other_files/`
4. Font files must be organized by their extension:
- `.ttf` files → `ttf/`
- `.otf` files → `otf/`
- Web fonts (`.woff`, `.woff2`, `.eot`, `.svg`) → `web/`
- All other files → `other_files/`
## Implementation
The cleanup script [cleanup_font_folders.py](mdc:.fontfoldercleanup/cleanup_font_folders.py) enforces these rules by:
1. Creating the required directory structure
2. Moving files to their appropriate locations
3. Handling nested directories by moving their contents to the correct locations
4. Removing empty directories after moving their contents
## Example
Before:
```
font-example/
├── font.ttf
├── font.otf
├── font.woff
├── license.txt
└── docs/
└── readme.md
```
After:
```
font-example/
├── ttf/
│ └── font.ttf
├── otf/
│ └── font.otf
├── web/
│ └── font.woff
└── other_files/
├── license.txt
└── docs/
└── readme.md
```

View file

@ -1,11 +0,0 @@
# Custom Font Tap — Cursor / LLM context
Read PROJECT.md first for full project description, layout, and workflows.
This repo follows multi-LLM conventions: PROJECT.md (canonical), .github/copilot-instructions.md (GitHub Copilot), .claude/skills/project-context/ (Claude Code / Agent SDK). See PROJECT.md § "LLM / agent context files".
Summary:
- This repo is a Homebrew tap for custom fonts. Fonts live in font_files/font-<name>/ with subdirs ttf/, otf/, web/, other_files/.
- Formula/*.rb are generated by .fontfoldercleanup/create_homebrew_formula.py — do not edit them by hand.
- To add a font: run `uv run add-font <path_or_name>` (or put folder in font_files/, run cleanup_font_folders.py then create_homebrew_formula.py). Then run `uv run pytest tests/` to validate.
- Scripts: Python 3 in .fontfoldercleanup/ (cleanup_font_folders.py, create_homebrew_formula.py). CLI: uv run add-font (tap_cli).

View file

@ -1,115 +0,0 @@
#!/usr/bin/env python3
import os
import shutil
import argparse
from pathlib import Path
class FontFolderCleaner:
def __init__(self, font_location):
self.font_location = Path(font_location)
self.required_dirs = ['ttf', 'otf', 'web', 'other_files']
self.web_extensions = {'.woff', '.woff2', '.eot', '.svg'}
self.font_extensions = {'.ttf', '.otf'}
def create_required_directories(self, folder_path):
"""Create required subdirectories if they don't exist."""
for dir_name in self.required_dirs:
dir_path = folder_path / dir_name
if not dir_path.exists():
dir_path.mkdir(parents=True)
print(f"Created directory: {dir_path}")
def get_target_directory(self, file_path):
"""Determine the target directory based on file extension."""
ext = file_path.suffix.lower()
if ext == '.ttf':
return 'ttf'
elif ext == '.otf':
return 'otf'
elif ext in self.web_extensions:
return 'web'
else:
return 'other_files'
def move_file_to_correct_directory(self, file_path, folder_path):
"""Move file to the appropriate subdirectory."""
if file_path.name == '.DS_Store' or file_path.name.startswith('._'):
file_path.unlink()
print(f"Removed macOS metadata file: {file_path}")
return
# Remove AppleDouble resource fork files (start with _ and aren't real fonts)
if file_path.name.startswith('_') and file_path.suffix.lower() in (
'.ttf', '.otf', '.ttc', '.woff', '.woff2', '.eot', '.svg',
):
# Check if it's an AppleDouble file by reading magic bytes
try:
with open(file_path, 'rb') as f:
magic = f.read(4)
if magic == b'\x00\x05\x16\x07': # AppleDouble magic number
file_path.unlink()
print(f"Removed AppleDouble resource fork: {file_path}")
return
except OSError:
pass
target_dir = self.get_target_directory(file_path)
target_path = folder_path / target_dir / file_path.name
if file_path != target_path:
shutil.move(str(file_path), str(target_path))
print(f"Moved {file_path.name} to {target_dir}/")
def cleanup_folder(self, folder_path):
"""Clean up a single font folder."""
folder_path = Path(folder_path)
# Skip if not a font folder
if not folder_path.name.startswith('font-'):
print(f"Skipping non-font folder: {folder_path}")
return
print(f"\nProcessing folder: {folder_path}")
# Create required directories
self.create_required_directories(folder_path)
# Move files to appropriate directories
for item in folder_path.iterdir():
if item.is_file():
self.move_file_to_correct_directory(item, folder_path)
elif item.is_dir() and item.name not in self.required_dirs:
# Handle nested directories
for file in item.rglob('*'):
if file.is_file():
self.move_file_to_correct_directory(file, folder_path)
# Remove empty directories
if not any(item.iterdir()):
item.rmdir()
print(f"Removed empty directory: {item}")
def cleanup_all_folders(self):
"""Clean up all font folders in the font location."""
for item in self.font_location.iterdir():
if item.is_dir() and not item.name.startswith('.'):
self.cleanup_folder(item)
def main():
parser = argparse.ArgumentParser(description='Clean up font folders and organize files.')
parser.add_argument('--path', type=str, default='../font_files',
help='Path to the font files directory (default: ../font_files)')
args = parser.parse_args()
# Convert relative path to absolute path
font_location = Path(__file__).parent / args.path
font_location = font_location.resolve()
if not font_location.exists():
print(f"Error: Font location does not exist: {font_location}")
return
cleaner = FontFolderCleaner(font_location)
cleaner.cleanup_all_folders()
if __name__ == "__main__":
main()

View file

@ -1,117 +0,0 @@
#!/usr/bin/env python3
"""Generate Homebrew Cask files for all fonts in font_files/."""
import re
from pathlib import Path
WEB_EXTENSIONS = (".woff", ".woff2", ".eot", ".svg")
class HomebrewCaskGenerator:
def __init__(self, fonts_dir):
self.fonts_dir = Path(fonts_dir)
self.casks_dir = self.fonts_dir.parent / "Casks"
self.casks_dir.mkdir(exist_ok=True)
def _collect_font_files(self, font_dir: Path) -> list[str]:
"""Return list of font file paths relative to extracted archive root for the font artifact."""
font_name = font_dir.name
files = []
ttf_dir = font_dir / "ttf"
for f in sorted(ttf_dir.iterdir()):
if f.is_file() and f.suffix.lower() in (".ttf", ".ttc"):
files.append(f"homebrew-fonts/font_files/{font_name}/ttf/{f.name}")
for otf in sorted((font_dir / "otf").glob("*.otf")):
files.append(f"homebrew-fonts/font_files/{font_name}/otf/{otf.name}")
return files
def _collect_all_info(self, font_dir: Path) -> dict:
"""Collect metadata about a font directory."""
font_name = font_dir.name
formula_name = font_name.replace("font-", "", 1)
font_files = self._collect_font_files(font_dir)
# Determine what types are present
has_ttf = any(f.endswith(".ttf") or f.endswith(".ttc") for f in font_files)
has_otf = any(f.endswith(".otf") for f in font_files)
web_dir = font_dir / "web"
has_web = any(
f.suffix.lower() in WEB_EXTENSIONS for f in web_dir.glob("*") if f.is_file()
)
extensions = []
if has_ttf:
extensions.append("TTF")
if has_otf:
extensions.append("OTF")
if has_web:
extensions.append("web")
ext_comment = " ".join(extensions) if extensions else "other_files only"
return {
"font_name": font_name,
"formula_name": formula_name,
"font_files": font_files,
"ext_comment": ext_comment,
}
def generate_cask_content(self, info: dict) -> str:
"""Generate the Ruby cask content for a font."""
font_name = info["font_name"]
formula_name = info["formula_name"]
font_files = info["font_files"]
ext_comment = info["ext_comment"]
# Build font artifact lines
font_lines = "\n".join(f' font "{f}"' for f in font_files)
# Human-readable name: replace hyphens/underscores with spaces, title case
display_name = re.sub(r"[-_]+", " ", formula_name).title()
return f"""# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: {ext_comment}
cask "{font_name}" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "{display_name}"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
{font_lines}
end
"""
def generate_casks(self):
"""Generate Homebrew casks for all font folders."""
for font_dir in sorted(self.fonts_dir.glob("font-*")):
if not font_dir.is_dir():
continue
info = self._collect_all_info(font_dir)
if not info["font_files"]:
print(f"Skipping {font_dir.name}: no TTF or OTF files")
continue
cask_content = self.generate_cask_content(info)
cask_path = self.casks_dir / f"{font_dir.name}.rb"
cask_path.write_text(cask_content)
print(f"Generated cask for {font_dir.name}")
def main():
script_dir = Path(__file__).parent
fonts_dir = script_dir.parent / "font_files"
if not fonts_dir.exists():
print(f"Error: Font directory not found: {fonts_dir}")
return
generator = HomebrewCaskGenerator(fonts_dir)
generator.generate_casks()
if __name__ == "__main__":
main()

View file

@ -1,13 +0,0 @@
# Tap configuration for trtmn/fonts
class TrtmnFonts < Formula
desc "Font collection from trtmn"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
version "1.0.0"
sha256 "" # This will need to be filled in after the first build
def install
# This is a meta-formula that doesn't install anything
# It's used to set up the tap configuration
end
end

View file

@ -1,17 +0,0 @@
---
applyTo: "**"
---
# Custom Font Homebrew Tap — Project instructions
**For full context, read [PROJECT.md](../PROJECT.md) at the repo root.**
## What this repo is
- Homebrew tap for a personal font collection. Users run `brew tap ...` then `brew install font-<name>`.
- Fonts live in `font_files/font-<name>/` with exactly four subdirs: `ttf/`, `otf/`, `web/`, `other_files/`.
## Rules
- Do **not** edit `Formula/*.rb` by hand. They are generated by `.fontfoldercleanup/create_homebrew_formula.py`.
- To add a font: run `uv run add-font <path_or_name>` (or add folder `font_files/font-<name>/`, run `cleanup_font_folders.py` then `create_homebrew_formula.py`). Validate with `uv run pytest tests/`.
- Scripts: Python 3 in `.fontfoldercleanup/` (cleanup_font_folders.py, create_homebrew_formula.py). CLI: `uv run add-font`. Tests: `uv run pytest tests/`.
- All font folders must use the `font-` prefix; only `.ttf` in ttf/, `.otf` in otf/, web fonts in web/, everything else in other_files/.

View file

@ -1,21 +0,0 @@
name: Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Run tests
run: uv run pytest tests/ -v --tb=short

13
.gitignore vendored
View file

@ -1,12 +1 @@
*.ofm
*.cfg
*.g2n
.DS_Store
*.setup_complete
.env
.venv/
.idea/
__pycache__/
*.pyc
.pytest_cache/
Icon?
.idea

0
.gitmodules vendored Normal file
View file

View file

@ -1,54 +0,0 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## What This Is
A Homebrew tap for custom fonts. Users `brew tap` and then `brew install --cask font-<name>`. The repo contains font assets in `font_files/` and generated Ruby cask files in `Casks/`.
## Commands
```bash
# Add or update a font (cleanup + cask generation + tests + brew audit)
uv run add-font <path_or_name>
uv run add-font <path_or_name> --no-test --no-audit
# Run tests
uv run pytest tests/ -v --tb=short
# Run a single test file
uv run pytest tests/test_font_structure.py -v
# Run tests for a specific font
uv run pytest tests/ -v -k "font-acrylic-hand"
# Regenerate all casks (without the full add-font flow)
python3 .fontfoldercleanup/create_homebrew_formula.py
# Reorganize font folders only
python3 .fontfoldercleanup/cleanup_font_folders.py --path font_files
```
## Architecture
- **`font_files/font-<name>/`** — Each font has exactly 4 subdirs: `ttf/`, `otf/`, `web/`, `other_files/`. No other top-level files allowed.
- **`Casks/font-<name>.rb`** — Generated Ruby cask files. **Never edit by hand.** Edits go in `.fontfoldercleanup/create_homebrew_formula.py`.
- **`tap_cli/main.py`** — The `add-font` CLI entry point. Copies font to `font_files/`, runs cleanup script, runs cask generator, then runs tests and `brew audit`.
- **`.fontfoldercleanup/cleanup_font_folders.py`** — Sorts loose font files into `ttf/`, `otf/`, `web/`, `other_files/` subdirs.
- **`.fontfoldercleanup/create_homebrew_formula.py`** — Scans `font_files/font-*` and writes one cask `.rb` per font in `Casks/`.
- **`tests/`** — Parametrized pytest suite. Tests validate: folder structure, cask existence, cask content (paths, identifier), no orphan casks, no duplicates.
- **`To Sort/`** — Staging area for new downloads not yet processed.
## Cask Naming Convention
Cask files use kebab-case identifiers matching the font folder name: `font-<name>`.
- `font-acrylic-hand``cask "font-acrylic-hand" do`
Fonts are installed to `~/Library/Fonts/` automatically via the `font` artifact.
## Key Constraints
- Python 3, standard library only (pathlib, shutil, argparse, re). pytest is the sole dependency.
- Casks download from `http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz` and expect the archive to unpack as `homebrew-fonts/`.
- CI runs `uv run pytest` on push/PR to main, plus `brew audit` on macOS (non-blocking).
- `PROJECT.md` is the canonical project description. When updating project rules, update `PROJECT.md` first, then sync `.cursorrules`, `.github/copilot-instructions.md`, and `.claude/skills/project-context/SKILL.md`.

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-abbiescriptpro-rg" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Abbiescriptpro Rg"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-abbiescriptpro-rg/ttf/abbiescriptpro-rg.ttf"
font "homebrew-fonts/font_files/font-abbiescriptpro-rg/otf/abbiescriptpro-rg.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-acrylic-hand" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Acrylic Hand"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-acrylic-hand/ttf/acylicalhand-thick.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-adelina" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Adelina"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-adelina/ttf/Adelina.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-agpx" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Agpx"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-agpx/otf/agpx.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-airosol" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Airosol"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-airosol/otf/airosol.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-alphalyrae" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Alphalyrae"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-alphalyrae/otf/alphalyrae-medium.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-alternate-gothic" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Alternate Gothic"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-alternate-gothic/ttf/Alternate Gothic No2 D Regular.ttf"
end

View file

@ -1,17 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-americus" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Americus"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-americus/ttf/Americus Sans Aged.ttf"
font "homebrew-fonts/font_files/font-americus/ttf/Americus Sans.ttf"
font "homebrew-fonts/font_files/font-americus/ttf/Americus Script Aged.ttf"
font "homebrew-fonts/font_files/font-americus/ttf/Americus Script.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-angular" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Angular"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-angular/otf/angular.otf"
end

View file

@ -1,16 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-aquabella" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Aquabella"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-aquabella/ttf/aquabella.ttf"
font "homebrew-fonts/font_files/font-aquabella/ttf/aquabella_alternates.ttf"
font "homebrew-fonts/font_files/font-aquabella/ttf/aquabella_sans.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-arinoe" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Arinoe"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-arinoe/ttf/arinoe.ttf"
font "homebrew-fonts/font_files/font-arinoe/otf/arinoe.otf"
end

View file

@ -1,18 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-averasanstc" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Averasanstc"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstc.otf"
font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstcbld.otf"
font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstcbrsh.otf"
font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstclt.otf"
font "homebrew-fonts/font_files/font-averasanstc/otf/averasanstcsktch.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-baduy" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Baduy"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-baduy/ttf/baduy.ttf"
font "homebrew-fonts/font_files/font-baduy/otf/baduy.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-baker-street" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Baker Street"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-baker-street/otf/BakerStreet-Black.otf"
font "homebrew-fonts/font_files/font-baker-street/otf/BakerStreet-Inline.otf"
end

View file

@ -1,31 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-barlow" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Barlow"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Black.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-BlackItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Bold.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-BoldItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraBold.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraBoldItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraLight.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ExtraLightItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Italic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Light.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-LightItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Medium.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-MediumItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Regular.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-SemiBold.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-SemiBoldItalic.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-Thin.ttf"
font "homebrew-fonts/font_files/font-barlow/ttf/Barlow-ThinItalic.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-bee-honey" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Bee Honey"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-bee-honey/ttf/bee-honey-regular.ttf"
font "homebrew-fonts/font_files/font-bee-honey/ttf/bee-honey-svg.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-benford" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Benford"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-benford/ttf/benford-demo.ttf"
font "homebrew-fonts/font_files/font-benford/otf/benford-demo.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-bjola" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Bjola"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-bjola/ttf/Bjola.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-blair-itc" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Blair Itc"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-blair-itc/ttf/Blair ITC Medium Regular.ttf"
end

View file

@ -1,17 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-bobby-jones-soft-free" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Bobby Jones Soft Free"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft-outline.ttf"
font "homebrew-fonts/font_files/font-bobby-jones-soft-free/ttf/bobby-rough-soft.ttf"
font "homebrew-fonts/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft-outline.otf"
font "homebrew-fonts/font_files/font-bobby-jones-soft-free/otf/bobby-jones-soft.otf"
end

View file

@ -1,27 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-bouncy_castle_free" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Bouncy Castle Free"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus-bold.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-bonus.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-sans.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss01.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss02.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle-ss03.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/ttf/bouncy-castle.ttf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus-bold.otf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-bonus.otf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-sans.otf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss01.otf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss02.otf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle-ss03.otf"
font "homebrew-fonts/font_files/font-bouncy_castle_free/otf/bouncy-castle.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-brightsight-02" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Brightsight 02"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-brightsight-02/ttf/brightsight02.ttf"
font "homebrew-fonts/font_files/font-brightsight-02/otf/brightsight02.otf"
end

View file

@ -1,17 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-brixtonline" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Brixtonline"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-brixtonline/ttf/brixtonln-lt.ttf"
font "homebrew-fonts/font_files/font-brixtonline/ttf/brixtonln-rg.ttf"
font "homebrew-fonts/font_files/font-brixtonline/otf/brixtonln-lt.otf"
font "homebrew-fonts/font_files/font-brixtonline/otf/brixtonln-rg.otf"
end

View file

@ -1,18 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-broke" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Broke"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-broke/otf/broke-bold.otf"
font "homebrew-fonts/font_files/font-broke/otf/broke-medium.otf"
font "homebrew-fonts/font_files/font-broke/otf/broke-regular.otf"
font "homebrew-fonts/font_files/font-broke/otf/brokefat-black.otf"
font "homebrew-fonts/font_files/font-broke/otf/brokefat-bold.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-buffy" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Buffy"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-buffy/ttf/buffy.ttf"
font "homebrew-fonts/font_files/font-buffy/otf/buffy.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-cabin" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Cabin"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-cabin/ttf/Cabin-Italic[wdth,wght].ttf"
font "homebrew-fonts/font_files/font-cabin/ttf/Cabin[wdth,wght].ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-charleston" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Charleston"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-charleston/ttf/Charleston-Regular.ttf"
font "homebrew-fonts/font_files/font-charleston/ttf/Charleston-Script.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-cheeky-rabbit" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Cheeky Rabbit"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-cheeky-rabbit/ttf/cheeky-rabbit.ttf"
font "homebrew-fonts/font_files/font-cheeky-rabbit/otf/cheekyrabbit.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-chido" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Chido"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-chido/otf/Chido.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-christmas-picture" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Christmas Picture"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-christmas-picture/ttf/christmas-picture.ttf"
font "homebrew-fonts/font_files/font-christmas-picture/otf/christmas-picture.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-chrone" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Chrone"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-chrone/ttf/chrone-demo.ttf"
font "homebrew-fonts/font_files/font-chrone/otf/chrone-demo.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-clancy-experience" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Clancy Experience"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-clancy-experience/otf/clancy-experience.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-clique" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Clique"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-clique/otf/Clique.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-code" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Code"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-code/otf/code-bold.otf"
font "homebrew-fonts/font_files/font-code/otf/code-light.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-coffina" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Coffina"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-coffina/ttf/coffina.ttf"
font "homebrew-fonts/font_files/font-coffina/otf/coffina.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-copixel-font-1764372079-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Copixel Font 1764372079 0"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-copixel-font-1764372079-0/otf/Copixel-Demo-BF6873ccc4785f8.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-creamy-dreams" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Creamy Dreams"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-creamy-dreams/otf/creamy-dreams.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-cucurucho" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Cucurucho"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-cucurucho/otf/cucurucho.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-damn" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Damn"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-damn/ttf/damn.ttf"
font "homebrew-fonts/font_files/font-damn/otf/damn.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-dance-blues" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Dance Blues"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-dance-blues/ttf/dance-blues.ttf"
font "homebrew-fonts/font_files/font-dance-blues/otf/dance-blues.otf"
end

View file

@ -1,25 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-depixel" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Depixel"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-depixel/ttf/depixelbreit-webfont.ttf"
font "homebrew-fonts/font_files/font-depixel/ttf/depixelbreitfett-webfont.ttf"
font "homebrew-fonts/font_files/font-depixel/ttf/depixelhalbfett-webfont.ttf"
font "homebrew-fonts/font_files/font-depixel/ttf/depixelillegible-webfont.ttf"
font "homebrew-fonts/font_files/font-depixel/ttf/depixelklein-webfont.ttf"
font "homebrew-fonts/font_files/font-depixel/ttf/depixelschmal-webfont.ttf"
font "homebrew-fonts/font_files/font-depixel/otf/depixelbreit.otf"
font "homebrew-fonts/font_files/font-depixel/otf/depixelbreitfett.otf"
font "homebrew-fonts/font_files/font-depixel/otf/depixelhalbfett.otf"
font "homebrew-fonts/font_files/font-depixel/otf/depixelillegible.otf"
font "homebrew-fonts/font_files/font-depixel/otf/depixelklein.otf"
font "homebrew-fonts/font_files/font-depixel/otf/depixelschmal.otf"
end

View file

@ -1,16 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-depok-cubism" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Depok Cubism"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-depok-cubism/ttf/depok-cubism.ttf"
font "homebrew-fonts/font_files/font-depok-cubism/otf/depok-cubism.otf"
font "homebrew-fonts/font_files/font-depok-cubism/otf/kosmos.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-devils-cut" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Devils Cut"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-devils-cut/otf/devilscut-shadow-personaluseonly.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-dirty-clouds" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Dirty Clouds"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-dirty-clouds/otf/dirty-clouds.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-district" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "District"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-district/ttf/district.ttf"
font "homebrew-fonts/font_files/font-district/otf/district-regular.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-dk-frozen-memory" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Dk Frozen Memory"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-dk-frozen-memory/otf/dk-frozen-memory.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-domaine-display" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Domaine Display"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-domaine-display/otf/domaine-display-bold.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-droid-sans-mono-awesome" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Droid Sans Mono Awesome"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-droid-sans-mono-awesome/ttf/Droid+Sans+Mono+Awesome.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-dtmilagros" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Dtmilagros"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-dtmilagros/otf/dt-milagros.otf"
end

View file

@ -1,17 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF web
cask "font-ep-boxi" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Ep Boxi"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi-bi.otf"
font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi-black.otf"
font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi-bold.otf"
font "homebrew-fonts/font_files/font-ep-boxi/otf/ep-boxi.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF web
cask "font-f37-stout" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "F37 Stout"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-f37-stout/ttf/f37stout-black.ttc"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-flyover" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Flyover"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-flyover/ttf/flyover.ttf"
font "homebrew-fonts/font_files/font-flyover/otf/flyover.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-font-awesome" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Font Awesome"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-font-awesome/ttf/fa-solid-900.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-fresh-christmas-font-1764370888-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Fresh Christmas Font 1764370888 0"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-fresh-christmas-font-1764370888-0/otf/Fresh-Christmas.otf"
end

View file

@ -1,17 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-friem" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Friem"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-friem/ttf/friem-regular.ttf"
font "homebrew-fonts/font_files/font-friem/ttf/friem-texture.ttf"
font "homebrew-fonts/font_files/font-friem/otf/friem-regular.otf"
font "homebrew-fonts/font_files/font-friem/otf/friem-texture.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-funky-round" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Funky Round"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-funky-round/otf/funkyround.otf"
font "homebrew-fonts/font_files/font-funky-round/otf/funkyround_striped.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-futura-1986" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Futura 1986"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-futura-1986/otf/futura1986.otf"
end

View file

@ -1,30 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-futura-ef" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Futura Ef"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-futura-ef/otf/OPTIFuturaDemiBold.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futura-index-efop-book.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futurablackef.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-bold.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-boldobl.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-book.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-bookobl.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-demibold.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-demiboldobl.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-extrabold.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-extraboldobl.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-extraboldshadowed.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-heavy.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-light.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-lightobl.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-medium.otf"
font "homebrew-fonts/font_files/font-futura-ef/otf/futuraef-mediumobl.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-futurama-characters" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Futurama Characters"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-futurama-characters/ttf/futurama characters.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-galaxia" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Galaxia"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-galaxia/otf/galaxia-personal-used-flava.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF web
cask "font-gilbert" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Gilbert"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-gilbert/otf/gilbert-bold-preview5.otf"
font "homebrew-fonts/font_files/font-gilbert/otf/gilbert-color-bold-preview5.otf"
end

View file

@ -1,16 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-gloss-and-bloom" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Gloss And Bloom"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom.ttf"
font "homebrew-fonts/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Alternates.ttf"
font "homebrew-fonts/font_files/font-gloss-and-bloom/ttf/Gloss_And_Bloom_Extras.ttf"
end

View file

@ -1,25 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-gohu-nerd-font" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Gohu Nerd Font"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFont-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontMono-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont11NerdFontPropo-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFont-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontMono-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFont14NerdFontPropo-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFont-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontMono-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni11NerdFontPropo-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFont-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontMono-Regular.ttf"
font "homebrew-fonts/font_files/font-gohu-nerd-font/ttf/GohuFontuni14NerdFontPropo-Regular.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-graham_hand" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Graham Hand"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-graham_hand/ttf/grahamhand.ttf"
font "homebrew-fonts/font_files/font-graham_hand/otf/grahamhand.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-gugi" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Gugi"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-gugi/ttf/Gugi-Regular.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-gyanko" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Gyanko"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-gyanko/otf/gyanko-regular.otf"
font "homebrew-fonts/font_files/font-gyanko/otf/gyanko-stencil.otf"
end

View file

@ -1,25 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-hack-nerd-font" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Hack Nerd Font"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-Bold.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-BoldItalic.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-Italic.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFont-Regular.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Bold.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-BoldItalic.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Italic.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontMono-Regular.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Bold.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-BoldItalic.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Italic.ttf"
font "homebrew-fonts/font_files/font-hack-nerd-font/ttf/HackNerdFontPropo-Regular.ttf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-hectra" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Hectra"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-hectra/otf/hectra-bold.otf"
font "homebrew-fonts/font_files/font-hectra/otf/hectra-rg.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-hello-headline" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Hello Headline"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-hello-headline/otf/hello-headline.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-hello-spring" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Hello Spring"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-hello-spring/ttf/HelloSpring.ttf"
font "homebrew-fonts/font_files/font-hello-spring/ttf/HelloSpringExtras.ttf"
end

View file

@ -1,18 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-highflier" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Highflier"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-highflier/ttf/highflier_block.ttf"
font "homebrew-fonts/font_files/font-highflier/ttf/highflier_regular.ttf"
font "homebrew-fonts/font_files/font-highflier/ttf/highflier_scribble.ttf"
font "homebrew-fonts/font_files/font-highflier/ttf/highflier_shadow.ttf"
font "homebrew-fonts/font_files/font-highflier/ttf/highflier_slice.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-horseland" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Horseland"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-horseland/ttf/wtf-horseland-was-habib.ttf"
end

View file

@ -1,41 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF web
cask "font-idgrotesk" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Idgrotesk"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-bold.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-bolditalic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-book.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-bookitalic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-italic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-light.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-lightitalic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-medium.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-mediumitalic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-regular.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-semibold.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-semibolditalic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-thin.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/ttf/idgrotesktrial-thinitalic.ttf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-bold.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-bolditalic.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-book.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-bookitalic.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-italic.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-light.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-lightitalic.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-medium.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-mediumitalic.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-regular.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-semibold.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-semibolditalic.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-thin.otf"
font "homebrew-fonts/font_files/font-idgrotesk/otf/idgrotesktrial-thinitalic.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-inconsolata-awesome" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Inconsolata Awesome"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-inconsolata-awesome/ttf/Inconsolata+Awesome.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-introvert-font-2-1764371655-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Introvert Font 2 1764371655 0"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-introvert-font-2-1764371655-0/otf/Introvert-BF691f1a5a2336d.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-jimmy-sans" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Jimmy Sans"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-jimmy-sans/otf/jimmysans-brush.otf"
font "homebrew-fonts/font_files/font-jimmy-sans/otf/jimmysans-rg.otf"
end

View file

@ -1,15 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-joc" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Joc"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-joc/otf/joc-fill.otf"
font "homebrew-fonts/font_files/font-joc/otf/joc-line.otf"
end

View file

@ -1,29 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-kitten" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Kitten"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Black.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Bold.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-ExtraLight.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Light.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Monoline.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/Kitten-Regular.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSlant-Bold.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSlant-Monoline.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSlant-Regular.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Black.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Bold.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Light.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash-Thin.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwash.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/KittenSwashMonoline.ttf"
font "homebrew-fonts/font_files/font-kitten/ttf/kittendingcats.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-kompeni" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Kompeni"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-kompeni/ttf/kompeni-regular.ttf"
end

View file

@ -1,25 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-krub" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Krub"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-Bold.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-BoldItalic.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-ExtraLight.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-ExtraLightItalic.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-Italic.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-Light.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-LightItalic.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-Medium.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-MediumItalic.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-Regular.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-SemiBold.ttf"
font "homebrew-fonts/font_files/font-krub/ttf/Krub-SemiBoldItalic.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-lab-grotesk" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Lab Grotesk"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-lab-grotesk/otf/lab-grotesk.otf"
end

View file

@ -1,17 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF OTF
cask "font-lance-tomchalky" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Lance Tomchalky"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-lance-tomchalky/ttf/lancerg.ttf"
font "homebrew-fonts/font_files/font-lance-tomchalky/ttf/lancesansrg.ttf"
font "homebrew-fonts/font_files/font-lance-tomchalky/otf/lancerg.otf"
font "homebrew-fonts/font_files/font-lance-tomchalky/otf/lancesansrg.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-larquette" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Larquette"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-larquette/ttf/LarquetteTypeface-Regular.ttf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-latcha" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Latcha"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-latcha/otf/latcha-personaluseonly.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: TTF
cask "font-lavish" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Lavish"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-lavish/ttf/Lavish.ttf"
end

View file

@ -1,34 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-lazare-grotesk-font-family-1764370398-0" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Lazare Grotesk Font Family 1764370398 0"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Black-BF647806db20415.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackBack-BF647806dbb006f.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BlackItalic-BF647806dbe2cde.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Bold-BF647806db04a12.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldBack-BF647806dbbac82.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-BoldItalic-BF647806dbbf597.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Light-BF647806db1a1e7.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightBack-BF647806dbc68ff.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-LightItalic-BF647806dbc7770.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Medium-BF647806db24482.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumBack-BF647806db9228d.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-MediumItalic-BF647806dc09b7e.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Regular-BF647806db2b1eb.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularBack-BF647806dba9aa2.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-RegularItalic-BF647806dc0245f.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-Thin-BF647806dbadb5b.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinBack-BF647806dbcc22e.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-ThinItalic-BF647806dbe4f58.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThin-BF647806dbbdb3a.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinBack-BF647806db89f02.otf"
font "homebrew-fonts/font_files/font-lazare-grotesk-font-family-1764370398-0/otf/LazareGroteskTrial-UltraThinItalic-BF647806dbf0c32.otf"
end

View file

@ -1,14 +0,0 @@
# This file was generated by the font folder cleanup script
# Do not edit this file directly
# Installs: OTF
cask "font-lexa" do
version "1.0.0"
sha256 :no_check
url "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts/archive/main.tar.gz"
name "Lexa"
homepage "http://clancy.genet-godzilla.ts.net:3000/trtmn/homebrew-fonts"
font "homebrew-fonts/font_files/font-lexa/otf/lexa.otf"
end

Some files were not shown because too many files have changed in this diff Show more