{"id":51119760,"url":"https://github.com/lazynop/lazynf","last_synced_at":"2026-06-25T01:00:55.722Z","repository":{"id":355436146,"uuid":"1227871028","full_name":"lazynop/lazynf","owner":"lazynop","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-15T20:10:44.000Z","size":307,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-15T21:00:10.702Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lazynop.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-03T09:25:56.000Z","updated_at":"2026-05-15T20:10:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lazynop/lazynf","commit_stats":null,"previous_names":["lazynop/vellum","lazynop/lazynf"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lazynop/lazynf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazynop%2Flazynf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazynop%2Flazynf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazynop%2Flazynf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazynop%2Flazynf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lazynop","download_url":"https://codeload.github.com/lazynop/lazynf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lazynop%2Flazynf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34755063,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-25T01:00:55.096Z","updated_at":"2026-06-25T01:00:55.655Z","avatar_url":"https://github.com/lazynop.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lazynf\n\nInstall [Nerd Fonts](https://www.nerdfonts.com/font-downloads) from your terminal.\n\n\u003e **Status:** early development. Interactive TUI plus full CLI: `install`, `import`, `update`, `remove`, `list`, `search`, `cache clean`, `cache refresh`, `doctor`, and shell `completion` on Linux and macOS. No release tagged yet — build from source.\n\n## Interactive mode\n\nRun `lazynf` with no arguments on a real terminal to open the interactive TUI: browse the full Nerd Fonts catalog, mark fonts with `space`, install / update / remove with `i` / `u` / `r`, and watch progress streamed in the log pane below. Doctor diagnostics with actionable fixes are available via `d`. Press `?` inside the TUI for the full key map.\n\n\u003c!-- TODO: add asciinema or screenshot link from manual smoke (P2.T13) --\u003e\n\nCLI sub-commands (`lazynf install foo`, `lazynf doctor`, etc.) remain available and behave exactly as before. The TUI is only launched when stdout is a TTY; piping or redirecting falls back to the help output.\n\n## Install\n\n```bash\ngo install github.com/lazynop/lazynf@latest\n```\n\n## Usage\n\n```bash\nlazynf install JetBrainsMono FiraCode    # install one or more fonts\nlazynf import --all                      # adopt fonts already on disk into lazynf state\nlazynf import JetBrainsMono --detect     # adopt and hash-match against upstream tag\nlazynf update                            # refresh stale or imported fonts\nlazynf update --force                    # refresh even fonts already at the latest tag\nlazynf remove FiraCode                   # uninstall a font (deletes files + state entry)\nlazynf remove --purge JetBrainsMono      # also delete files for fonts that were imported\nlazynf remove --all --yes                # remove every font from the manifest (non-interactive)\nlazynf list                              # color grid of available fonts (TTY) / plain on pipe\nlazynf list --installed                  # bordered table of installed fonts\nlazynf search mono                       # find fonts by substring\nlazynf cache clean                       # clear catalog cache and kept archives\nlazynf doctor                            # diagnose paths, auth, manifest, catalog, orphans\n```\n\nGlobal flags: `-q/--quiet` (errors only), `-v/--verbose` (extra diagnostics on stderr).\n\nRun `lazynf --help` for full options.\n\n### Shell completion\n\n```bash\nsource \u003c(lazynf completion bash)              # bash\nlazynf completion zsh \u003e ~/.zfunc/_lazynf      # zsh\nlazynf completion fish | source               # fish\n```\n\nTab completion suggests font names dynamically: catalog entries for `install`, manifest entries for `update`/`remove`, orphan candidates for `import`. Run `lazynf list` once to populate the catalog cache.\n\n### Authentication\n\n`lazynf` makes one GitHub API call per command in the steady state (cached against the upstream release tag). It picks up credentials from, in order: `GITHUB_TOKEN`, `gh auth token`, then unauthenticated. Anonymous use is fine for occasional installs; authenticate to avoid GitHub's anonymous rate limits on heavy use.\n\n## Build from source\n\n```bash\ngit clone https://github.com/lazynop/lazynf\ncd lazynf\njust build\n./bin/lazynf --help\n```\n\nRequires Go 1.25+ and (optionally) [`just`](https://github.com/casey/just).\n\n## Status\n\nMVP. Implemented on Linux and macOS: `install`, `import`, `update`, `remove`, `list`, `search`, `cache clean`, `doctor`, and shell `completion`. Planned: Windows support and an interactive TUI.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazynop%2Flazynf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flazynop%2Flazynf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazynop%2Flazynf/lists"}