{"id":18410275,"url":"https://github.com/racklin/clean-devenv","last_synced_at":"2025-04-12T21:59:12.813Z","repository":{"id":140702333,"uuid":"224959447","full_name":"racklin/clean-devenv","owner":"racklin","description":"Racklin's applications for Development Environment","archived":false,"fork":false,"pushed_at":"2022-10-25T05:48:17.000Z","size":1838,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T21:59:09.818Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/racklin.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}},"created_at":"2019-11-30T04:30:51.000Z","updated_at":"2022-05-09T06:23:32.000Z","dependencies_parsed_at":"2024-07-09T18:01:23.443Z","dependency_job_id":null,"html_url":"https://github.com/racklin/clean-devenv","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/racklin%2Fclean-devenv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/racklin%2Fclean-devenv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/racklin%2Fclean-devenv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/racklin%2Fclean-devenv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/racklin","download_url":"https://codeload.github.com/racklin/clean-devenv/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248637782,"owners_count":21137538,"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","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-06T03:30:26.378Z","updated_at":"2025-04-12T21:59:12.789Z","avatar_url":"https://github.com/racklin.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![OSX iTerm2 screenshot](./images/screenshot-1.png)\n\n# Rack Lin's applications for devenv\n\n**Warning**: Don’t blindly use my settings unless you know what that entails. Use at your own risk!\n\n## Prerequisites\nMake sure you have installed all of the following prerequisites on your development machine:\n\n### OSX\n- [Homebrew](https://brew.sh/)\n  ```\n  /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n  ```\n\n  Install xcode:\n  ```\n  xcode-select --install\n  ```\n\n  Install Rosetta 2 for M1 \n  ```\n  softwareupdate --install-rosetta\n  ```\n\n### Windows\n- [Scoop](https://scoop.sh/)\n  ```\n  \u003e Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time\n  \u003e Invoke-WebRequest get.scoop.sh | Invoke-Expression\n  ```\n- [Chocolatey](https://chocolatey.org/)\n  ```\n  Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))\n  ```\n\n### Windows WSL2\nEnabling Windows Subsystem for Linux.\nREF: (https://docs.microsoft.com/en-us/windows/wsl/install-win10)\n\nOpen PowerShell as administrator and enter this command:\n```\nEnable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux\n```\n\n#### Enabling Virtual Machine\nOpen PowerShell as administrator and enter this command:\n```\nEnable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform \n```\n\n#### Downloading and installing WSL2\nDownload the WSL2 Kernel update\n[https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi](https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi)\n```\nInvoke-WebRequest -Uri https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi -OutFile wsl_update_x64.msi -UseBasicParsing\n```\nAnd run the installer `wsl_update_x64.msi`.\n\n#### Setting WSL2 as default\n```\nwsl --set-default-version 2\n```\n\n#### Install Distro with winget\n```\nwinget install Canonical.Ubuntu\n```\n\n\n## How to use\n\n### OSX\nInstall base apps:\n```\nbrew bundle install --file=Brewfile-base\n```\n\nInstall devtools:\n```\nbrew bundle install --file=Brewfile-devtools\n```\n\nInstall apps from Mac App Store:\n```\nbrew bundle install --file=brewfile-mas\n```\n\nMicrosoft and Entertainment\n```\nbrew bundle install --file=brewfile-microsoft\nbrew bundle install --file=brewfile-entertainment\n```\n\n### Win10\nInstall base apps with `winget`:\n```\nwinget import -i winget_base.json\n```\n\nInstall other base apps with `scoop`:\n```\n.\\win10_scoop_install.ps1\n```\n\nInstall devtools:\n```\nwinget import -i winget_devtools.json\n```\n\nMeeting Tools and Entertainment Apps\n```\nwinget import -i winget_meeting.json\nwinget import -i winget_entertainment.json\n```\n\n## About me\n\n- [Twitter](https://twitter.com/racklin)\n- [github](https://github.com/racklin)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fracklin%2Fclean-devenv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fracklin%2Fclean-devenv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fracklin%2Fclean-devenv/lists"}