{"id":46066875,"url":"https://github.com/th2ch-g/dotfiles","last_synced_at":"2026-06-06T17:00:40.215Z","repository":{"id":60108635,"uuid":"539834120","full_name":"th2ch-g/dotfiles","owner":"th2ch-g","description":"💻 My dotfiles for UNIX","archived":false,"fork":false,"pushed_at":"2026-05-31T10:51:59.000Z","size":7265,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-31T12:19:36.295Z","etag":null,"topics":["dotfiles","macos","unix","zsh"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/th2ch-g.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2022-09-22T06:35:36.000Z","updated_at":"2026-05-31T10:52:02.000Z","dependencies_parsed_at":"2026-03-08T15:51:44.585Z","dependency_job_id":null,"html_url":"https://github.com/th2ch-g/dotfiles","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/th2ch-g/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/th2ch-g%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/th2ch-g%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/th2ch-g%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/th2ch-g%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/th2ch-g","download_url":"https://codeload.github.com/th2ch-g/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/th2ch-g%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33990887,"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-06T02:00:07.033Z","response_time":107,"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":["dotfiles","macos","unix","zsh"],"created_at":"2026-03-01T12:32:31.902Z","updated_at":"2026-06-06T17:00:40.092Z","avatar_url":"https://github.com/th2ch-g.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\n![last-commit](https://img.shields.io/github/last-commit/th2ch-g/dotfiles)\n![license](https://img.shields.io/github/license/th2ch-g/dotfiles)\n![repo-size](https://img.shields.io/github/repo-size/th2ch-g/dotfiles)\n\n\u003c!-- TOC GFM --\u003e\n\n- [Install](#install)\n  - [Quick start (interactive)](#quick-start-interactive)\n  - [For me](#for-me)\n  - [For Guest](#for-guest)\n  - [From Dockerfile](#from-dockerfile)\n    - [Case1: Pull from ghcr](#case1-pull-from-ghcr)\n    - [Case2: Build locally](#case2-build-locally)\n- [set-url for commit](#set-url-for-commit)\n- [Update](#update)\n- [Add release](#add-release)\n- [Delete release (not recommended)](#delete-release-not-recommended)\n- [Development setup](#development-setup)\n\n\u003c!-- /TOC --\u003e\n\n## Install\n\n### Quick start (interactive)\n\nBootstrap with a single `curl ... | bash` command (rustup-style). It prompts for\nhow to fetch the repo, an install profile, and optional developer setup, then\ndelegates to `link.sh` / `install.sh`:\n\n```shell\ncurl -fsSL https://raw.githubusercontent.com/th2ch-g/dotfiles/main/setup.sh | bash\n```\n\n- Fetch method: `HTTPS clone`, `SSH clone`, or `ZIP download` (no git history —\n  the \"without git\" path).\n- Profiles: `full` (everything for this machine), `standard` (core tools),\n  `guest` (link-only), or `customize` (toggle each component).\n- Prerequisites: missing `git` / `zsh` / `unzip` can be installed on the spot\n  after a confirmation prompt (Linux: apt/dnf/pacman/zypper/apk via sudo;\n  macOS: `xcode-select --install`).\n- Developer setup (git checkouts only): optionally switch `origin` to SSH and\n  run `make setup` (pre-commit hooks).\n- Install location: defaults to `~/works/dotfiles`; override with\n  `SETUP_DIR=/path/to/dir` or by typing a path at the interactive prompt.\n- Non-interactive (CI / containers): set `SETUP_PROFILE=full|standard|guest`\n  (and optionally `SETUP_FETCH=https|ssh|zip`), e.g.\n  `curl -fsSL .../setup.sh | SETUP_PROFILE=standard bash`.\n- Flags (highest precedence): the same selections work as flags, e.g.\n  `./setup.sh --profile full --fetch ssh --yes`, or pick components directly with\n  `link.sh` / `install.sh` toggles like `./setup.sh --zsh --git --pixi --uv`.\n  Over `curl ... | bash`, pass them after `-s --`:\n  `curl -fsSL .../setup.sh | bash -s -- --profile standard`.\n  Run `./setup.sh --help` for the full list.\n- The manual one-liners below remain available and produce the same result.\n\n### For me\n\n\u003cdetails\u003e\n\u003csummary\u003eManual one-liners (same result as Quick start)\u003c/summary\u003e\n\n- Bootstrap Installation on local\n  - Prerequisite: git, zsh (check by `git --version \u0026\u0026 zsh --version`)\n    - macos: `xcode-select --install`\n      - **DO NOT** launch zsh in other terminal until the installation is done\n        (up to brew) because of OpenSSL issue\n    - linux: `sudo apt install zsh git` or manually install by\n      `install_scripts/`\n\n```shell\nmkdir -p ${HOME}/works \u0026\u0026 \\\ncd ${HOME}/works \u0026\u0026 \\\ngit clone https://github.com/th2ch-g/dotfiles.git \u0026\u0026 \\\ncd ./dotfiles \u0026\u0026 \\\n./link.sh --zsh \u0026\u0026 \\\n./install.sh --pixi --pixi-pkgs --uv --cargo --cargo-pkgs --brew --brew-pkgs --warpd --claude-code --codex --python3 --gh-ext --iterm2 --macos \u0026\u0026 \\\n./link.sh --git --tmux --vim --neovim --ssh --aerospace \u0026\u0026 \\\ngit remote set-url origin git@github.com:th2ch-g/dotfiles.git \u0026\u0026 \\\nmake setup\n```\n\n- Install on local via SSH\n\n```shell\nmkdir -p ${HOME}/works \u0026\u0026 \\\ncd ${HOME}/works \u0026\u0026 \\\ngit clone git@github.com:th2ch-g/dotfiles.git \u0026\u0026 \\\ncd ./dotfiles \u0026\u0026 \\\n./link.sh --git --zsh --tmux --vim --neovim --ssh --aerospace \u0026\u0026 \\\n./install.sh --pixi --pixi-pkgs --uv --cargo --cargo-pkgs --claude-code --codex --python3\n```\n\n- Install on local via HTTPS\n\n```shell\nmkdir -p ${HOME}/works \u0026\u0026 \\\ncd ${HOME}/works \u0026\u0026 \\\ngit clone https://github.com/th2ch-g/dotfiles.git \u0026\u0026 \\\ncd ./dotfiles \u0026\u0026 \\\n./link.sh --git --zsh --tmux --vim --neovim --ssh --aerospace \u0026\u0026 \\\n./install.sh --pixi --pixi-pkgs --uv --cargo --cargo-pkgs --claude-code --codex --python3\n```\n\n- Install without git\n\n```shell\nmkdir -p ${HOME}/works \u0026\u0026 \\\nwget https://github.com/th2ch-g/dotfiles/archive/refs/heads/main.zip \u0026\u0026 \\\nunzip main.zip \u0026\u0026 \\\nrm main.zip \u0026\u0026 \\\nmv dotfiles-main dotfiles \u0026\u0026 \\\ncd ./dotfiles \u0026\u0026 \\\n./link.sh --git --zsh --tmux --vim --neovim --ssh --aerospace \u0026\u0026 \\\n./install.sh --pixi --pixi-pkgs --uv --cargo --cargo-pkgs --claude-code --codex --python3\n```\n\n\u003c/details\u003e\n\n### For Guest\n\n\u003cdetails\u003e\n\u003csummary\u003eGuest install (link-only)\u003c/summary\u003e\n\n```shell\ngit clone https://github.com/th2ch-g/dotfiles.git \u0026\u0026 \\\ncd ./dotfiles \u0026\u0026 \\\n./link.sh --zsh --vim --tmux --neovim\n```\n\n\u003c/details\u003e\n\n### From Dockerfile\n\n\u003cdetails\u003e\n\u003csummary\u003eDocker usage\u003c/summary\u003e\n\n#### Case1: Pull from ghcr\n\n```shell\ndocker pull --platform linux/amd64 ghcr.io/th2ch-g/dotfiles:latest\ndocker run --platform linux/amd64 --rm -it ghcr.io/th2ch-g/dotfiles\n```\n\n#### Case2: Build locally\n\n```shell\ngit clone https://github.com/th2ch-g/dotfiles.git \u0026\u0026 \\\ncd ./dotfiles \u0026\u0026 \\\ndocker image build -t myenv . \u0026\u0026 \\\ndocker run --rm -it myenv\n```\n\n\u003c/details\u003e\n\n## set-url for commit\n\n```shell\nmake s\n```\n\n## Update\n\n```shell\nmake u\n```\n\n## Add release\n\n```bash\nmake r\n```\n\n## Delete release (not recommended)\n\n```bash\nmake delete-release TAG=vYYYY.MM.DD\n```\n\n## Development setup\n\nActivate pre-commit hooks after cloning:\n\n```bash\nmake setup\n```\n\nRun all linters/formatters manually:\n\n```bash\nmake l\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fth2ch-g%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fth2ch-g%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fth2ch-g%2Fdotfiles/lists"}