{"id":27057285,"url":"https://github.com/jordojordo/dotfiles","last_synced_at":"2026-05-05T23:32:34.600Z","repository":{"id":286123482,"uuid":"956484586","full_name":"jordojordo/dotfiles","owner":"jordojordo","description":"@jordojordo dotfiles","archived":false,"fork":false,"pushed_at":"2026-02-03T14:21:39.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-04T04:21:36.042Z","etag":null,"topics":["dotfiles","dotfiles-linux","shell","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/jordojordo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-03-28T10:31:56.000Z","updated_at":"2026-02-03T14:24:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"1d96121a-b3a3-4447-ae31-c2544a96a5cf","html_url":"https://github.com/jordojordo/dotfiles","commit_stats":null,"previous_names":["jordojordo/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jordojordo/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jordojordo%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jordojordo%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jordojordo%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jordojordo%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jordojordo","download_url":"https://codeload.github.com/jordojordo/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jordojordo%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32672632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","dotfiles-linux","shell","zsh"],"created_at":"2025-04-05T11:18:20.808Z","updated_at":"2026-05-05T23:32:34.595Z","avatar_url":"https://github.com/jordojordo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Dotfiles\n\nWelcome to my dotfiles repository, my personal collection of configurations and tweaks that make my system uniquely mine. Inspired by [Holman’s approach](https://github.com/holman/dotfiles), these dotfiles are organized by topic for a modular and maintainable setup.\n\n## Overview\n\nThis repository houses all my system configurations, organized into topic areas that cover everything from shell customizations to application settings. I've extended the original concept to include:\n\n**Cross-platform Package Installation**:\n\nWhether you're on macOS or an Arch-based system, the installation scripts automatically handle package installation.\n\n- **macOS**: Uses a `Brewfile` to manage packages via Homebrew.\n- **Arch Linux and Derivatives**: Uses a dedicated `packages.arch.list` file, installing packages with either `yay` (if available) or `pacman`.\n- **Fedora**: Uses `dnf` to install packages listed in `packages.fedora.list`.\n\n**Manageable Package List**:\nAll desired packages are listed in a dedicated `packages.*.list` file, making updates and customization straightforward.\n\n## Directory Structure\n\n- **bin/**:\nContains scripts added to your `$PATH` (e.g., the `dot` command for installing dependencies).\n- **topics/**:\nEach file ending in `.zsh` is sourced into your shell:\n  - `topics/path.zsh` sets up your system path.\n  - `topics/completion.zsh` loads shell completions.\n- **\\*.symlink**:\nFiles with this extension are symlinked into your home directory (e.g., `zshrc.symlink` becomes `~/.zshrc`).\n- **packages.list**:\nA plain text file listing all the packages you want to install. Lines starting with `#` are treated as comments.\n\n## Installation\n\nClone the repository and run the bootstrap script to set up your environment:\n\n```sh\ngit clone https://github.com/jordojordo/dotfiles ~/.dotfiles\ncd ~/.dotfiles\nscripts/bootstrap\n```\n\nThe bootstrap script creates symlinks for your dotfiles and performs initial configuration.\n\n## Package Installation\n\nThis repository uses a smart package installer that reads from the packages.list file. It works as follows:\n\n- **macOS**:\nUses Homebrew with `brew bundle` to install packages listed in the `Brewfile`.\n- **Arch Linux and Derivatives**:\nChecks for an Arch-based system (by verifying `/etc/arch-release`) and then:\n  - Uses `yay` if available (which supports AUR packages).\n  - Falls back to `pacman` if `yay` isn’t installed.\n\nSimply update the `packages.list` file to include the packages you need—one per line. Comments (lines beginning with `#`) are supported for clarity.\n\n## Customization\n\n- **Adding Topics**:\nCreate new topic directories or files (e.g., `topics/python.zsh`) to extend your configuration.\n- **Modifying Scripts**:\nTweak scripts in `bin/` (or add new ones) to automate your workflow.\n\n## Troubleshooting\n\n- **Symlink Issues**:\nVerify that symlinks in your home directory correctly point to files in `~/.dotfiles`.\n- **Package Manager Errors**:\nMake sure your package manager (`homebrew`, `pacman`, or `yay`) is installed and up-to-date.\n- **Script Errors**:\nReview output messages from the installation scripts for any errors, and adjust the configuration accordingly.\n\n## Contributions\n\nFeel free to fork this repository and make it your own. If you have suggestions, improvements, or find bugs, please open an issue or submit a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjordojordo%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjordojordo%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjordojordo%2Fdotfiles/lists"}