{"id":51397442,"url":"https://github.com/desertthunder/toolbox","last_synced_at":"2026-07-04T03:34:29.593Z","repository":{"id":360904832,"uuid":"972087140","full_name":"desertthunder/toolbox","owner":"desertthunder","description":"a set of small tools as python scripts and tiny web apps.","archived":false,"fork":false,"pushed_at":"2025-12-10T22:47:49.000Z","size":338,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-28T11:29:07.825Z","etag":null,"topics":["cli","python","web"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/desertthunder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-04-24T14:12:04.000Z","updated_at":"2025-12-10T22:48:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/desertthunder/toolbox","commit_stats":null,"previous_names":["desertthunder/toolbox"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/desertthunder/toolbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/desertthunder%2Ftoolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/desertthunder%2Ftoolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/desertthunder%2Ftoolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/desertthunder%2Ftoolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/desertthunder","download_url":"https://codeload.github.com/desertthunder/toolbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/desertthunder%2Ftoolbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35109210,"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-07-04T02:00:05.987Z","response_time":113,"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":["cli","python","web"],"created_at":"2026-07-04T03:34:28.896Z","updated_at":"2026-07-04T03:34:29.585Z","avatar_url":"https://github.com/desertthunder.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# toolbox\n\na set of small tools as python scripts and tiny web apps.\n\n\u003c!-- markdownlint-disable MD033 --\u003e\n\u003cdetails\u003e\n\u003csummary\u003e\nCLI\n\u003c/summary\u003e\n\n## Walls\n\n`walls` downloads Bing’s \"wallpaper of the day\" to a local folder.\n\n![December 10, 2025 Image](./images/20251210_en-US.jpg)\n\n### Features\n\n- Fetch today’s or recent Bing wallpapers (up to ~7 days back).\n- Supports different markets (e.g. `en-US`, `ja-JP`).\n- Optional UHD/4K variant when available.\n- Colored, human-friendly terminal output.\n- Images saved under `~/Pictures/bing-walls`.\n\n### Usage\n\n```bash\n# Today’s en-US wallpaper\nwalls\n\n# Yesterday’s wallpaper\nwalls --idx 1\n\n# Japanese 4K wallpaper with extra metadata\nwalls --market ja-JP --uhd --verbose\n\n# Custom destination folder and no ANSI colors (for logs)\nwalls --dest ~/wallpapers/bing --no-color\n```\n\n### Options\n\n- `-m, --market` - Bing market/locale (default: `en-US`).\n- `-i, --idx` - Day offset (`0=today`, `1=yesterday`, up to `7`).\n- `-d, --dest` - Destination directory (default: `~/Pictures/bing-walls`).\n- `--uhd` - Ask Bing for UHD/4K variants when available.\n- `-v, --verbose` - Print title and copyright line.\n- `--no-color` - Disable ANSI colors.\n\n## Palette\n\n`palette` is a tiny color exploration tool inspired by [coolors](https://coolors.co) palettes. It renders vertical color bars in your terminal and can also export them as a PNG strip for design docs or sharing.\n\n### Features\n\n- Accepts colors as:\n    - Hex: `#0ea5e9`, `0ea5e9`\n    - RGB tuples: `255,0,0`\n    - `rgb(r,g,b)` notation: `rgb(14,165,233)`\n- Renders a row of vertical bars using truecolor ANSI (24-bit).\n- Optional labels (the original color strings) below each bar.\n- Optional PNG export.\n\n### Usage\n\n#### Terminal palettes\n\n```bash\n# Simple 5-color palette\npalette '#0ea5e9' '#10b981' '#f97316' '#facc15' '#64748b'\n\n# Mixed formats\npalette '#0ea5e9' '16,185,129' 'rgb(249,115,22)'\n\n# Wider bars, taller palette, no labels in terminal\npalette '#0ea5e9' '#10b981' '#f97316' --width 12 --height 8 --no-labels\n```\n\n#### PNG export\n\n```bash\n# Render both terminal view and a PNG\npalette \\\n  '#0ea5e9' '#10b981' '#f97316' '#facc15' '#64748b' \\\n  --png ./palettes/ocean-warm.png\n```\n\nTo Render `three.png`:\n\n![three color palette](./images/three.png)\n\n```sh\n# Custom image size, no labels in the PNG\npalette \\\n  '#0ea5e9' '16,185,129' 'rgb(249,115,22)' \\\n  --png ./palettes/three.png \\\n  --png-width 900 \\\n  --png-height 200 \\\n  --no-png-labels\n```\n\n### Options\n\n- `COLOR...` - ≥ 2 colors (`#rrggbb`, `rrggbb`, `r,g,b`, or `rgb(r,g,b)`).\n- `-w, --width` - Bar width (characters) in terminal view.\n- `-H, --height` - Bar height (rows) in terminal view.\n- `--no-labels` - Hide labels in terminal.\n- `--no-color` - Disable ANSI colors.\n- `--png PATH` - Write a PNG palette image to `PATH`.\n- `--png-width` - PNG width in pixels.\n- `--png-height` - PNG bar area height in pixels (labels sit below).\n- `--no-png-labels` - Don’t draw labels in the PNG.\n\n\u003c/details\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdesertthunder%2Ftoolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdesertthunder%2Ftoolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdesertthunder%2Ftoolbox/lists"}