dotfiles/PowerShell/Microsoft.PowerShell_profile.ps1

107 lines
3.1 KiB
PowerShell

# 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
{
param (
[ValidateSet("Light", "Dark")]$theme,
[string[]]$content,
[int]$darkLN,
[int]$lightLN
)
# Read the actual lines
$darkThemeLine = $content[$darkLN - 1]
$lightThemeLine = $content[$lightLN - 1]
# Determine if lines are currently commented
$darkThemeIsCommented = $darkThemeLine -match '^\s*#'
$lightThemeIsCommented = $lightThemeLine -match '^\s*#'
switch ($theme)
{
"Light"
{
if (-not $darkThemeIsCommented)
{ $content[$darkLN - 1] = "# $darkThemeLine"
}
if ($lightThemeIsCommented)
{ $content[$lightLN - 1] = $lightThemeLine -replace '^\s*#\s?', ''
}
}
"Dark"
{
if ($darkThemeIsCommented)
{ $content[$darkLN - 1] = $darkThemeLine -replace '^\s*#\s?', ''
}
if (-not $lightThemeIsCommented)
{ $content[$lightLN - 1] = "# $lightThemeLine"
}
}
}
return $content
}
# Get theme personalization settings
$settings = Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize'
# Read the content of the Alacritty config file
$alacritty = "$env:APPDATA\alacritty\alacritty.toml"
$content = Get-Content -Path $alacritty
# Determine current theme
$theme = if ($settings.AppsUseLightTheme)
{ "Light"
} else
{ "Dark"
}
# Toggle the theme lines based on the current theme
ToggleThemeLines -theme $theme -content $content -darkLN 2 -lightLN 3 | Set-Content -Path $alacritty