Various utility scripts for my personal use
curl -sL https://raw.githubusercontent.com/henrikwilhelmsen/scripts/main/bootstrap.sh | bash
PowerShell script to bootstrap a new system with Git, uv and other development tools.
Run script with no parameters, skipping the optional installs:
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/henrikwilhelmsen/scripts/main/bootstrap.ps1" -OutFile "./bootstrap_tmp.ps1"; &"./bootstrap_tmp.ps1"; & Remove-Item "./bootstrap_tmp.ps1"
Run script directly and install Git and uv:
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/henrikwilhelmsen/scripts/main/bootstrap.ps1" -OutFile "./bootstrap_tmp.ps1"; &"./bootstrap_tmp.ps1" -Python -Git; & Remove-Item "./bootstrap_tmp.ps1"
Configure Windows Terminal and PowerShell with my preferences.
Download and run the script with uv:
Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/henrikwilhelmsen/scripts/main/configure_win_shell.py" -OutFile "./configure_win_shell_tmp.py"; &uv run "./configure_win_shell_tmp.py"; & Remove-Item "./configure_win_shell_tmp.py"