-
-
Save dooderstem/d592afea57c4fcfecec0df9d434171bf to your computer and use it in GitHub Desktop.
Windows Machine Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# manage corsair preferables | |
choco install icue | |
# Browsers | |
choco install googlechrome | |
choco install opera-gx | |
# Auth | |
choco install bitwarden | |
choco install bitwarden-cli | |
# Productivity | |
choco install notion | |
choco install todoist | |
choco install obsidian | |
choco install chatgpt | |
choco install sparkmail | |
# DEV | |
choco install vscode | |
choco install micro | |
choco install nodejs | |
choco install nvm | |
choco install python | |
choco install ruby | |
## git | |
choco install git | |
choco install gh | |
choco install github-desktop | |
git config --global core.editor micro | |
# pause for credentials | |
git config --global user.name "" | |
git config --global user.email [email protected] | |
git clone https://github.com/pyenv/pyenv.git ~/.pyenv | |
## Design | |
choco install gimp | |
choco install inkscape | |
choco install obs-studio | |
## Other | |
choco install steam-client | |
choco install discord |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## installing Chocolatey pachage manager! | |
## https://community.chocolatey.org/ | |
# With PowerShell, you must ensure [Get-ExecutionPolicy] is not Restricted. | |
# We suggest using Bypass to bypass the policy to get things installed or AllSigned for quite a bit more security. | |
# Run Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or Set-ExecutionPolicy Bypass -Scope Process. | |
# Get-ExecutionPolicy | |
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')) | |
# test chocolatey installation | |
choco # or choco -? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment