2024-03-20 16:03:14 +00:00
|
|
|
#!/bin/pwsh
|
2024-08-07 19:34:40 +00:00
|
|
|
. "$PSScriptRoot/../../Software/PowerShell/Profile.ps1";
|
2024-03-20 16:03:14 +00:00
|
|
|
|
2024-03-20 23:13:07 +00:00
|
|
|
foreach ($defaultUser in @($true, $false)) {
|
2024-08-07 19:34:40 +00:00
|
|
|
Add-PowerShellProfileStatement -DefaultUser:$defaultUser -Script "# aliae`naliae init pwsh | Invoke-Expression";
|
2024-03-20 23:13:07 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 19:34:40 +00:00
|
|
|
Add-PowerShellProfileStatement -System -Category "aliae" -Script "# aliae`n$(Get-ScriptInitializer "aliae completion powershell")";
|