{"id":22881581,"url":"https://github.com/ccharlton/move-in-scripts","last_synced_at":"2026-02-22T09:40:03.253Z","repository":{"id":145630499,"uuid":"218204552","full_name":"ccharlton/move-in-scripts","owner":"ccharlton","description":"My scripts. Small input, big output.","archived":false,"fork":false,"pushed_at":"2024-11-06T21:41:04.000Z","size":554,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T01:39:59.229Z","etag":null,"topics":["homebrew","macos","shell-script","workstations"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":false,"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/ccharlton.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}},"created_at":"2019-10-29T04:31:18.000Z","updated_at":"2024-11-06T21:41:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"ab4693a7-1617-42fb-930d-0ae757aacaad","html_url":"https://github.com/ccharlton/move-in-scripts","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ccharlton/move-in-scripts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccharlton%2Fmove-in-scripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccharlton%2Fmove-in-scripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccharlton%2Fmove-in-scripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccharlton%2Fmove-in-scripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ccharlton","download_url":"https://codeload.github.com/ccharlton/move-in-scripts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ccharlton%2Fmove-in-scripts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29708363,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T05:59:28.568Z","status":"ssl_error","status_checked_at":"2026-02-22T05:58:46.208Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["homebrew","macos","shell-script","workstations"],"created_at":"2024-12-13T17:38:26.505Z","updated_at":"2026-02-22T09:40:03.200Z","avatar_url":"https://github.com/ccharlton.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Quick Scripts\n\n- Move-in script(s)\n- Environment/Workflow/Tools setup scripts\n\n\u003e Note: Mac workstations usually need Xcode Tools pre-installed for other software to do their thing.\n\u003e \n\u003e Run `xcode-select --install`.\n\u003e If Xcode is installed, you can run `xcodebuild -license accept`.\n\n| Platform | Support |\n| ----------- | ----------- |\n| Mac OS | Yes |\n| Linux | No |\n| Windows | No |\n\n-----\n\n## Todo(s)\n\n- [x] Basic setup v1.0\n- [x] Apps list v1.0\n- [x] Developer list v1.0\n- [x] Basic setup v1.1\n- [x] Apps list v1.1\n- [x] Script some of the optional stuff for fun\n- [ ] Ponder our expanding universe\n\n-----\n\n## Get Started\n\n### Pre-setup\nEdit the following files to include/exclude software.\n - `homebrew-formulas.sh`\n - `homebrew-apps.sh` \n\n### Start\nRun the following script first:\n```\n./start.sh\n```\n\n### Additional setup\nCopy the following files for each desired setup.\n\n##### nano\n```\ngit clone git@github.com:scopatz/nanorc.git ~/.nano\ncp ./Templates/.nanorc ~/\n```\n\n##### vi/vim\n```\n```\n\n## Legacy stuff (pre-2019)\nRuby addons (many have moved elsewhere in the stack)\n```\n./ruby.sh\n```\n\n## SSH setup\nSteps largely [taken from Github](https://docs.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)\n1. Edit and run the following to generate the key.\n```\nls -al ~/.ssh\nssh-keygen -t rsa -b 4096 -C \"your_email@example.com\"\neval \"$(ssh-agent -s)\"\n```\n\n2. Copy the contents of the id_rsa.pub file to your clipboard for pasting into Github and Hosting providers:\n```\npbcopy \u003c ~/.ssh/id_rsa.pub\n```\n\n3. Paste the following into `~/.ssh/config` (`vi ~/.ssh/config`). Edit the `IdentityFile` if you didn't use the default `~/.ssh/id_rsa` path.\n```\nHost *\n  AddKeysToAgent yes\n  UseKeychain yes\n  IdentityFile ~/.ssh/id_rsa\n```\n\n4. Run the following to add the key to the OS keychain agent:\n```\nssh-add --apple-use-keychain ~/.ssh/id_rsa\n```\n\n## Maintenance\nSee this script: https://gist.github.com/ccharlton/e84c82f60a568163a4b5cb30f6cd514e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccharlton%2Fmove-in-scripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fccharlton%2Fmove-in-scripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fccharlton%2Fmove-in-scripts/lists"}