{"id":24315062,"url":"https://github.com/heraldofsolace/homesweethome","last_synced_at":"2026-05-06T00:02:34.157Z","repository":{"id":134288049,"uuid":"344322477","full_name":"heraldofsolace/HomeSweetHome","owner":"heraldofsolace","description":"A dotfile manager written in C++.","archived":false,"fork":false,"pushed_at":"2021-04-08T03:43:23.000Z","size":2793,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-16T21:32:35.545Z","etag":null,"topics":["cpp","cpp17","cpp20","dotfiles","dotfiles-linux","linux"],"latest_commit_sha":null,"homepage":"","language":"C++","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/heraldofsolace.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["heraldofsolace"],"patreon":"heraldofsolace","open_collective":null,"ko_fi":"heraldofsolace","tidelift":null,"community_bridge":null,"liberapay":"heraldofsolace","issuehunt":null,"otechie":null,"custom":["https://paypal.me/the2ndeuler"]}},"created_at":"2021-03-04T02:14:12.000Z","updated_at":"2021-03-15T06:17:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"482a9a39-b45d-43c1-bf92-6a3b6717ae7a","html_url":"https://github.com/heraldofsolace/HomeSweetHome","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/heraldofsolace/HomeSweetHome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heraldofsolace%2FHomeSweetHome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heraldofsolace%2FHomeSweetHome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heraldofsolace%2FHomeSweetHome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heraldofsolace%2FHomeSweetHome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heraldofsolace","download_url":"https://codeload.github.com/heraldofsolace/HomeSweetHome/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heraldofsolace%2FHomeSweetHome/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32672682,"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":["cpp","cpp17","cpp20","dotfiles","dotfiles-linux","linux"],"created_at":"2025-01-17T10:16:36.748Z","updated_at":"2026-05-06T00:02:34.152Z","avatar_url":"https://github.com/heraldofsolace.png","language":"C++","funding_links":["https://github.com/sponsors/heraldofsolace","https://patreon.com/heraldofsolace","https://ko-fi.com/heraldofsolace","https://liberapay.com/heraldofsolace","https://paypal.me/the2ndeuler","https://ko-fi.com/J3J53WCCI","https://liberapay.com/heraldofsolace/donate"],"categories":[],"sub_categories":[],"readme":"# HomeSweetHome\n\n[![GitHub Release](https://img.shields.io/github/release/heraldofsolace/homesweethome.svg)](https://github.com/twpayne/heraldofsolace/HomeSweetHome)\n\nA dotfile manager written in C++.\n\n**Warning: Use at your own risk. I will not be held responsible if you break your setup.**\n\nThe code is not optimal. You can contribute by improving it.\n\n## QuickStart\n\n1. Initialize:\n\n```shell\nhome_sweet_home init\n```\n\nThis will set the source directory to `.local/share/home_sweet_home` and target directory to `~`\n\n2. Add a file:\n\n```shell\nhome_sweet_home add ~/.bashrc\n```\n\nThis will copy `~/.bashrc` to `bashrc##hidden` in the source directory.\n\n3. Edit:\n\n```shell\nhome_sweet_home edit ~/.bashrc\n```\n\nThis will edit the copy stored in source directory and not the actual file.\n\n4. Apply when ready:\n\n```shell\nhome_sweet_home apply ~/.bashrc\n```\n\nThis will copy the updated file to the target directory.\n\n5. (Optional) Add a template\n\n```shell\nhome_sweet_home add ~/test -t\n```\n\nThis will add the file `test` as a template with `.tmpl` extension.\n\n```shell\nhome_seet_home edit ~/test\n```\n\nPut \"Hello I am {{username}}\" in the file and save.\n\n```shell\nhome_sweet_home apply ~/test\n```\n\nNow `~/test` contains \"Hello I am \u0026lt;your username here\u0026gt;\".\n\nTo see the available data run\n\n```shell\nhome_sweet_home data\n```\n\nThe templating uses [Inja](https://github.com/pantor/inja) syntax.\n\n6. Forget a managed file:\n\n```shell\nhome_sweet_home forget ~/.bashrc # Add -f flag to not get prompted\n```\n\nBy default, this will only delete **the managed copy in source directory** and not the one in target directory. Add\nthe \"-r\" flag to also remove the one in target directory.\n\n## Installation\n\nComing soon.\n\n## Donate\n\n[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/J3J53WCCI)\n\u003ca href=\"https://liberapay.com/heraldofsolace/donate\"\u003e\u003cimg alt=\"Donate using Liberapay\" src=\"https://liberapay.com/assets/widgets/donate.svg\"\u003e\u003c/a\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheraldofsolace%2Fhomesweethome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheraldofsolace%2Fhomesweethome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheraldofsolace%2Fhomesweethome/lists"}