install proxy switcher instead of switching from powershell profile

This commit is contained in:
Baipyrus 2024-09-02 08:55:38 +02:00
parent 05ea34a711
commit 1e1b7e85e1
2 changed files with 4 additions and 47 deletions

View File

@ -1,50 +1,3 @@
# Get internet settings
$settings = Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings';
function SetProxy
{
# Get proxy data from settings
$proxy_server = $settings.proxyServer;
# Set proxy environment variables
$env:http_proxy = ($env:https_proxy = $proxy_server)
[System.Environment]::SetEnvironmentVariable('http_proxy', $proxy_server, 'User');
[System.Environment]::SetEnvironmentVariable('https_proxy', $proxy_server, 'User');
# Set proxy git settings
git config --global http.proxy $proxy_server;
git config --global https.proxy $proxy_server;
# Set proxy npm settings
npm config set proxy $proxy_server;
npm config set https-proxy $proxy_server;
}
Set-Alias -Name Proxy-Set -Value SetProxy;
function UnsetProxy
{
# Unset proxy environment variables
$env:http_proxy = ($env:https_proxy = '')
[System.Environment]::SetEnvironmentVariable('http_proxy', [NullString]::Value, 'User');
[System.Environment]::SetEnvironmentVariable('https_proxy', [NullString]::Value, 'User');
# Unset proxy git settings
git config --global --unset http.proxy;
git config --global --unset https.proxy;
# Delete proxy npm settings
npm config delete proxy;
npm config delete https-proxy;
}
Set-Alias -Name Proxy-Unset -Value UnsetProxy;
if ($settings.proxyEnable -and (!$env:http_proxy))
{ SetProxy;
} elseif ((!$settings.proxyEnable) -and $env:http_proxy)
{ UnsetProxy;
}
# Function to toggle alacritty theme imports based on current theme
function ToggleThemeLines
{

View File

@ -155,6 +155,10 @@ ProcessUrlFiles -sourceDir "$dotfilesRepo\nvim" -destinationDir "$env:LOCALAPPDA
Write-Host "Setting up PowerShell profile..." -ForegroundColor Cyan
CopyFileWithPrompt "$dotfilesRepo\PowerShell\Microsoft.PowerShell_profile.ps1" $psProfile
# Setting up self-made ProxySwitcher
Write-Host "Setting up ProxySwitcher..." -ForegroundColor Cyan
Invoke-RestMethod 'https://raw.githubusercontent.com/Baipyrus/ProxySwitcher/main/install.ps1' | Invoke-Expression
function UnzipAndInstall
{
param (