mirror of
https://github.com/turtlebasket/env.git
synced 2026-03-05 03:54:25 -08:00
cross-platform
This commit is contained in:
8
setup-scripts/windows/GetModScripts.ps1
Normal file
8
setup-scripts/windows/GetModScripts.ps1
Normal file
@@ -0,0 +1,8 @@
|
||||
mkdir Debloaters
|
||||
iwr "https://raw.githubusercontent.com/Sycnex/Windows10Debloater/master/Windows10DebloaterGUI.ps1" -o Debloaters/Windows10DebloaterGUI.ps1
|
||||
scoop install windowsspyblocker
|
||||
Write-Output @"
|
||||
Actions:
|
||||
1. Download Windows 10 Debloater GUI (https://github.com/Sycnex/Windows10Debloater)
|
||||
2. Install WindowsSpyBlocker via scoop (https://github.com/crazy-max/WindowsSpyBlocker)
|
||||
"@
|
||||
19
setup-scripts/windows/Setup.ps1
Normal file
19
setup-scripts/windows/Setup.ps1
Normal file
@@ -0,0 +1,19 @@
|
||||
# SETUP SCRIPT. RUN IN POWERSHELL CORE.
|
||||
|
||||
# Disable Telemetry/Connected Experience Service
|
||||
Set-Service DiagTrack -StartupType Disabled
|
||||
|
||||
# Install Modules
|
||||
Install-Module PSReadLine -Scope CurrentUser
|
||||
Install-Module posh-git -Scope CurrentUser
|
||||
Install-Module oh-my-posh -Scope CurrentUser
|
||||
|
||||
# Install Chocolatey
|
||||
Write-Output "Install Chocolatey."
|
||||
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||
|
||||
# Get MesloLGS NerdFont
|
||||
Write-Output "Install MesloLGS NerdFont"
|
||||
iwr "https://github.com/romkatv/dotfiles-public/raw/master/.local/share/fonts/NerdFonts/MesloLGS%20NF%20Regular.ttf" -o MesloLGS_NF.ttf ; .\MesloLGS_NF.ttf
|
||||
|
||||
# WSL2 coming soon to non-insiders windows releases. Figure out installation once it's here.
|
||||
Reference in New Issue
Block a user