{"id":34339810,"url":"https://github.com/ozzyczech/dotfiles","last_synced_at":"2026-03-11T23:02:36.558Z","repository":{"id":12927052,"uuid":"15604688","full_name":"OzzyCzech/dotfiles","owner":"OzzyCzech","description":"This is a collection of my personal dotfiles for configuring macOS.","archived":false,"fork":false,"pushed_at":"2026-02-27T13:04:04.000Z","size":6720,"stargazers_count":135,"open_issues_count":0,"forks_count":49,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-02-27T14:56:16.902Z","etag":null,"topics":["config","configuration","dotfiles","mac","macos","shell"],"latest_commit_sha":null,"homepage":"https://ozana.cz","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"siwuxie/pyafm","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OzzyCzech.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":"2014-01-03T08:12:19.000Z","updated_at":"2026-02-27T13:04:07.000Z","dependencies_parsed_at":"2023-12-04T09:22:45.278Z","dependency_job_id":"7c4a1ad3-2ed3-445a-bc69-01373f8b06a4","html_url":"https://github.com/OzzyCzech/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OzzyCzech/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OzzyCzech%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OzzyCzech%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OzzyCzech%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OzzyCzech%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OzzyCzech","download_url":"https://codeload.github.com/OzzyCzech/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OzzyCzech%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30406400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T22:36:59.286Z","status":"ssl_error","status_checked_at":"2026-03-11T22:36:57.544Z","response_time":84,"last_error":"SSL_read: 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":["config","configuration","dotfiles","mac","macos","shell"],"created_at":"2025-12-17T21:33:06.592Z","updated_at":"2026-03-11T23:02:36.553Z","avatar_url":"https://github.com/OzzyCzech.png","language":"Shell","readme":"# OzzyCzech's dotfiles\n\nPersonal macOS config. Zsh, Antidote, Zed, and helpers.\n\n## Quick start\n\n```shell\ngit clone git@github.com:OzzyCzech/dotfiles.git ~/.dotfiles \u0026\u0026 cd $_ \u0026\u0026 make\n```\n\n## Prerequisites\n\nInstall [Homebrew](https://brew.sh/):\n\n```shell\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n```\n\nInstall tools:\n\n```shell\nbrew install git zsh zsh-completions antidote zed\n```\n\n- [Zsh](https://www.zsh.org/) — interactive shell\n- [Zsh Completions](https://github.com/zsh-users/zsh-completions) — extra completions\n- [Antidote](https://getantidote.github.io) — fast Zsh plugin manager\n- [Git](https://git-scm.com/) — version control\n- [Zed](https://zed.dev/) — code editor\n\nSet Zsh as default shell:\n\n```shell\nchsh -s /bin/zsh\n```\n\n## Setup scripts\n\nScripts live in `setup/` (see `setup/README.md` for layout):\n\n- **apps/** — app-specific defaults (Dock, Finder, Mail, …): run e.g. `zsh setup/apps/finder.zsh`\n- **system/** — system \u0026 input (keyboard, screensaver, updates); some define functions loaded via `defaults.zsh`\n\nLoad helper functions and run one-off tweaks:\n\n```shell\nsource ./setup/defaults.zsh\n```\n\n### Lock screen message\n\nHelps recover a lost device.\n\n```shell\nset-lock-message \" Roman Ožana • +420 605 783 455 • roman@ozana.cz\"\nset-screen-capture ~/Downloads\n```\n\n### Backup SSH keys\n\n```shell\nzip -r ~/Downloads/ssh.zip ~/.ssh\n```\n\n### Backup with backup utility\n\nA Swift-based backup utility is included for saving your configuration files and important data. It supports backing up specified files or files listed in a JSON config, only including files and directories that exist. The utility is found in `utils/backup.swift` and is available in `~/.bin/backup` after running `make utils`.\n\n**Usage:**\n\n- To backup specific files or directories:\n  ```shell\n  backup \u003csource1\u003e \u003csource2\u003e ... \u003cout-directory\u003e\n  ```\n\n- To backup paths defined in a JSON configuration:\n  ```shell\n  backup -c \u003cconfig.json\u003e \u003cout-directory\u003e\n  ```\n\nThe JSON config supports lists of paths or groupings for organizing backups. Only files/directories that exist (paths with `~` are supported) will be copied into the backup output directory, retaining relative structure.\n\nFor more details and config examples, refer to comments in `utils/backup.swift`.\n\n### Get inspired\n\nhttps://dotfiles.github.io/inspiration/","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzyczech%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozzyczech%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzyczech%2Fdotfiles/lists"}