{"id":19916841,"url":"https://github.com/srackham/dotfiles","last_synced_at":"2026-02-28T15:01:03.790Z","repository":{"id":227765168,"uuid":"772325071","full_name":"srackham/dotfiles","owner":"srackham","description":"Linux dotfiles managed by chezmoi","archived":false,"fork":false,"pushed_at":"2026-02-28T08:22:38.000Z","size":2591,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-28T14:04:46.151Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/srackham.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":"2024-03-15T01:03:50.000Z","updated_at":"2026-02-28T08:22:42.000Z","dependencies_parsed_at":"2024-03-29T10:30:06.357Z","dependency_job_id":"40903974-67c0-4c45-8b54-31f3cca644e2","html_url":"https://github.com/srackham/dotfiles","commit_stats":null,"previous_names":["srackham/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/srackham/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/srackham","download_url":"https://codeload.github.com/srackham/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/srackham%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29938961,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"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":[],"created_at":"2024-11-12T21:47:47.332Z","updated_at":"2026-02-28T15:01:03.771Z","avatar_url":"https://github.com/srackham.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chezmoi Managed Dotfiles\n\n17-Sep-2024\n\nMy cross-distribution Linux dotfiles managed by [chezmoi](https://www.chezmoi.io/).\n\n## Applications\n\nHere's the list of application configurations managed by Chezmoi:\n\n- bash\n- GNOME desktop shortcuts (installed manually)\n- Helix\n- lazygit\n- neovim\n- nushell\n- recoll\n- Remmina\n- tmux\n- Vim\n- Vimium (installed manually)\n- zsh\n\n## Installing and updating on secondary machines from Github repository\n\nMy desktop machines NFS-mount my shared documents directory to `~/share`; the local chezmoi repository is in `~/share/projects/chezmoi` and it's just a matter of:\n\n1. Copying the `~/.config/chezmoi/chezmoi.toml` file from the primary desktop PC which points chezmoi to the shared NFS location.\n2. Run `chezmoi apply` to copy the chezmoi source files to their target locations.\n\n### Machines that do not have access to the NFS projects directory mounts\n\nSee _Using chezmoi across multiple machines_ in `~/share/notes/chezmoi-notes.md`.\n\n## Manually Exported/Imported Configurations\n\nThe `exported` directory contains files that are managed manually:\n\n### Browser Bookmarks\n\nExported from Brave browser.\n\n- Open [Bookmarks Manager](brave://bookmarks/) (C-S-o).\n- Run the _Export bookmarks_ command in the ⋮ menu (vertical ellipsis menu, top right) and save bookmarks file to `~/.local/share/chezmoi/exported/bookmarks.html`.\n\n### GNOME Desktop key bindings\n\n- Export GNOME custom key bindings with:\n\n  ```\n  chezmoi-dump-gnome-bindings     # Alias\n\n  dconf dump /org/gnome/desktop/wm/keybindings/ \u003e exported/wm-keybindings.dconf \u0026\u0026 \\\n  dconf dump /org/gnome/settings-daemon/plugins/media-keys/ \u003e exported/media-keys-keybindings.dconf \u0026\u0026 \\\n  dconf dump /org/gnome/shell/keybindings/ \u003e exported/shell-keybindings.dconf\n  ```\n\n- Use the dconf load command to restore custom GNOME key binding from the dump file. See `./exported/post-install-config.sh` for details.\n\n```\ndconf load /org/gnome/desktop/wm/keybindings/ \u003c exported/wm-keybindings.dconf \u0026\u0026 \\\ndconf load /org/gnome/settings-daemon/plugins/media-keys/ \u003c exported/media-keys-keybindings.dconf \u0026\u0026 \\\ndconf load /org/gnome/shell/keybindings/ \u003c exported/shell-keybindings.dconf\n```\n\n### Vimium Options\n\nThe Vimium browser extension options are in the `vimium-options.json` file. Manually save and restore them using the backup and restore commands on the _Backup and Restore_ section of the Vimium extension Options page.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrackham%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsrackham%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsrackham%2Fdotfiles/lists"}