Start-BitsTransfer -Source "https://raw.githubusercontent.com/urob/dotfiles-win/main/boot.ps1"; .\boot.ps1If you get an error message like File boot.ps1 cannot be loaded because running scripts is disabled on this system., you need to enable a
less restrictive script execution policy. E.g.
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser# this doesn't work b/c windows terminal dynamically adds WT_SESSION and WT_PROFILE to WSLENV
# setx WSLENV "${env:WSLENV}:USERPROFILE/up"
# this isn't great either, b/c it overwrites the existing WSLENV. Better would be to append ignoring WT_VARIABLES
setx WSLENV "USERPROFILE/up"