{"id":19680498,"url":"https://github.com/announce/altogether","last_synced_at":"2025-08-30T09:34:48.760Z","repository":{"id":64306712,"uuid":"168924073","full_name":"announce/altogether","owner":"announce","description":"CLI tool to sync config files between Alfred and Albert","archived":false,"fork":false,"pushed_at":"2019-07-08T13:50:19.000Z","size":9258,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-27T06:49:58.039Z","etag":null,"topics":["albert","alfred","keyboard-launcher"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/announce.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}},"created_at":"2019-02-03T08:17:50.000Z","updated_at":"2022-09-28T22:22:56.000Z","dependencies_parsed_at":"2023-01-15T10:45:30.263Z","dependency_job_id":null,"html_url":"https://github.com/announce/altogether","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/announce/altogether","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/announce%2Faltogether","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/announce%2Faltogether/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/announce%2Faltogether/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/announce%2Faltogether/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/announce","download_url":"https://codeload.github.com/announce/altogether/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/announce%2Faltogether/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272833299,"owners_count":25000870,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"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":["albert","alfred","keyboard-launcher"],"created_at":"2024-11-11T18:05:17.363Z","updated_at":"2025-08-30T09:34:48.737Z","avatar_url":"https://github.com/announce.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Altogether\n===\n\n[![Build Status](https://dev.azure.com/announce/altogether/_apis/build/status/announce.altogether?branchName=master)](https://dev.azure.com/announce/altogether/_build/latest?definitionId=4\u0026branchName=master)\n\n## Altogether in a Nutshell\n\nAltogether is a CLI tool to synchronize configuration files between 2 major keyboard launchers -- [Alfred](https://www.alfredapp.com/) and [Albert](https://albertlauncher.github.io/).\nSo the target user is who adopts both Mac and Linux on a daily basis, or someone needs to migrate one's config to the another.\n\n## Available Features\n\nSupported configuration files are the ones relating to:\n\n* [x] Web search\n* [ ] Snippets (refer to [#13](https://github.com/announce/altogether/issues/13))\n\n## Installation\n\n#### For Mac users\n\nGo ahead and grab Homebrewed `altogether`:\n\n```bash\nbrew install announce/homebrew-altogether/altogether\n```\n\n#### For Arch Linux users\n\nIf you are using Arch Linux, [AUR Package](https://aur.archlinux.org/packages/altogether/) is recommended.\nInstall `altogether` with AUR helper such as `yay`:\n\n```bash\nyay -Syu altogether\n```\n\n#### How to get `altogether` command\n\nUnless specified above, one of the simplest ways for your platform is:\n\n1. Download package from [![the latest release](https://img.shields.io/github/release/announce/altogether.svg?style=flat)](https://github.com/announce/altogether/releases/latest) according to platform:\n    * macOS: `darwin-amd64.tar.gz`\n    * Linux: `linux-amd64.tar.gz`\n1. Extract the compressed tarball and place `altogether` to somewhere under `PATH` directory:\n\n```bash\ncurl -L https://github.com/announce/altogether/releases/download/v0.1.2/linux-amd64.tar.gz | tar -zxvf - \\\n\u0026\u0026 mv ./linux-amd64/altogether /usr/local/bin \\\n\u0026\u0026 altogether --help\n```\n\n## Usage\n\n#### Command Arguments\n\nThere are 2 ways to specify arguments.\nOne is to use command options like below:\n\n```bash\naltogether sync-web --dry-run --alfred-path ~/.config/Alfred.alfredpreferences --albert-path ~/.config/testdata/albert\n```\n\nIn the other way, you can specify parameters in environmental variables:\n\n* `AL2_ALFRED_PATH`: a path to Alfred's config directory\n* `AL2_ALBERT_PATH`: a path to Albert's config directory\n* `AL2_DRY_RUN`: set `1` to dump merged configurations in TSV style without actual file change\n* `AL2_VERBOSE`: set `1` to print out detailed logs\n\nFor instance, you can execute commands like as following:\n\n```bash\nexport AL2_ALFRED_PATH=\"${HOME}/.config/Alfred.alfredpreferences\"\nexport AL2_ALBERT_PATH=\"${HOME}/.config/albert\"\nexport AL2_DRY_RUN=1\nexport AL2_VERBOSE=1\n./altogether sync-web\n```\n\n#### Experimental: Systemd Configurations\n\nConsider setting a Systemd configuration to run `altogether` automatically.\n\n1. Place unit files to `~/.config/systemd/user/`\n    * You can find sample files under `sample/systemd/` in this repository\n1. Register `altogether` and browse the logs like below:\n\n```bash\nsystemctl --user daemon-reload \u0026\u0026 systemctl --user restart altogether\njournalctl --user -xe -u altogether\n```\n\n## Supported Versions\n\n[Alfred](https://www.alfredapp.com/changelog/):\n\n* 3.8.x\n\n[Albert](https://albertlauncher.github.io/docs/changelog/):\n\n* 0.16.x\n\n\n## Development Contribution\n\nHere's how to get started!\n\n1. Install [Docker](https://docs.docker.com/install/) (verified version: `18.09.1-ce`)\n1. Build a container and start debugging:\n \n ```bash\n./script/ci.sh init\n./script/ci.sh ci\n```\n\nRelated repositories:\n\n* [announce/homebrew-altogether](https://github.com/announce/homebrew-altogether)\n* [announce/aur-altogether](https://github.com/announce/aur-altogether)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fannounce%2Faltogether","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fannounce%2Faltogether","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fannounce%2Faltogether/lists"}