PSWinTerminal.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 |
if ($env:WT_SESSION -and ($IsWindows -or ($PSVersionTable.PSVersion.Major -le 5))) { #region init Write-Verbose "Identify WT version" if ($IsWindows) { Write-Verbose "PowerShell 6+" $Script:PSWinTerminalProcessPathFolder = (Get-Process -id $PID).Parent.Path | Split-Path } else { Write-Verbose "Windows PowerShell" $Script:PSWinTerminalProcessPathFolder = (Get-Process -id $((Get-CimInstance -Query "SELECT * FROM Win32_Process WHERE ProcessID = $pid").ParentProcessID)).Path | split-path } Write-Verbose "Setting path to json files." if ( $Script:PSWinTerminalProcessPathFolder.contains('WindowsTerminalPreview') ) { $Script:PSWinTerminalConfigPath = "$env:LocalAppData\Packages\Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe\LocalState\settings.json" $Script:PSWinTerminalDefaultsPath = "$Script:PSWinTerminalProcessPathFolder\defaults.json" } else { $Script:PSWinTerminalConfigPath = "$env:LocalAppData\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json" $Script:PSWinTerminalDefaultsPath = "$Script:PSWinTerminalProcessPathFolder\defaults.json" } if ( ( Test-Path -LiteralPath $Script:PSWinTerminalDefaultsPath) ) { $Script:PSWinTerminalDefaults = (Get-Content -LiteralPath $Script:PSWinTerminalDefaultsPath | Where-Object { -not $_.Trim().StartsWith('//') } ) | ConvertFrom-Json $Script:PSWinTerminalDefaultThemes = $Script:PSWinTerminalDefaults.schemes.name } if ( ( Test-Path -LiteralPath $Script:PSWinTerminalConfigPath) ) { $Script:PSWinTerminalOriginalConfig = Get-Content $Script:PSWinTerminalConfigPath } #endregion init function Initialize-PSWinTerminalConfig { [CmdletBinding()] param ( ) begin { } process { if ( ( Test-Path -LiteralPath $Script:PSWinTerminalConfigPath) ) { $Script:PSWinTerminalConfig = (Get-Content -LiteralPath $Script:PSWinTerminalConfigPath | Where-Object { -not $_.Trim().StartsWith('//') } ) | ConvertFrom-Json $Script:PSWinTerminalThemes = $Script:PSWinTerminalConfig.schemes.name $Script:PSWinTerminalCurentProfile = $Script:PSWinTerminalConfig.profiles.list.GetEnumerator() | Where-Object { $_.guid -eq $env:WT_PROFILE_ID } if ($Script:PSWinTerminalCurentProfile.colorScheme) { $Script:PSWinTerminalCurentProfileHasColorScheme = $true } else { $Script:PSWinTerminalCurentProfileHasColorScheme = $false } } } end { } } function Restore-WTConfig { <# .SYNOPSIS Restore-WTConfig will restore your Windows Terminal configuration. .DESCRIPTION Restore-WTConfig will restore your Windows Terminal configuration to a backup which was created when the module was loaded into your current session. The backup is stored in memory, and will be deleted when you close the current PowerShell session. .INPUTS None. .OUTPUTS None. .EXAMPLE Restore-WTConfig Restore-WTConfig will restore your Windows Terminal configuration .LINK https://github.com/sassdawe/PSWinTerminal #> [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = "High")] param ( ) begin { } process { If ($PSCmdlet.ShouldProcess("Windows Terminal settings", "Restore")) { try { $Script:PSWinTerminalOriginalConfig | Set-Content -LiteralPath $Script:PSWinTerminalConfigPath Initialize-PSWinTerminalConfig Write-Verbose "Windows Terminal settings have been restored" } catch { Write-Warning "Oh something went sideways: $_" } } } end { } } function Get-WTTheme { <# .SYNOPSIS Get-WTTheme will get the current Windows Terminal theme .DESCRIPTION Get-WTTheme will get the current Windows Terminal theme, if these is no theme configured it'll return the default theme. .INPUTS These is no input for Get-WTTheme .OUTPUTS Name of the current theme .EXAMPLE Get-WTTheme Get-WTTheme will get the current Windows Terminal theme .LINK https://github.com/sassdawe/PSWinTerminal #> [CmdletBinding()] param ( ) begin { } process { if ($Script:PSWinTerminalCurentProfileHasColorScheme) { $Script:PSWinTerminalCurentProfile.colorScheme } else { Write-Output "Campbell" } } end { } } function Show-WTTheme { <# .SYNOPSIS Show-WTTheme will show all available Windows Terminal themes .DESCRIPTION Show-WTTheme will show all available Windows Terminal themes. .INPUTS These is no input for Show-WTTheme .OUTPUTS Array of available themes, the custom themes will have a (*) next to their names. .EXAMPLE Show-WTTheme Show-WTTheme will show all available Windows Terminal themes .LINK https://github.com/sassdawe/PSWinTerminal #> [CmdletBinding()] param ( ) begin { } process { $WTThemes = New-Object System.Collections.ArrayList $Script:PSWinTerminalDefaultThemes | ForEach-Object { $null = $WTThemes.Add("$_") } $Script:PSWinTerminalThemes | ForEach-Object { $null = $WTThemes.Add("$_ *") } $WTThemes.ToArray() | Sort-Object } end { } } function Initialize-WTThemeList { <# .SYNOPSIS Initialize-WTThemeList .DESCRIPTION Initialize-WTThemeList .INPUTS These is no input for Initialize-WTThemeList .OUTPUTS Array of available themes. .EXAMPLE .LINK https://github.com/sassdawe/PSWinTerminal #> [CmdletBinding()] param ( ) begin { } process { $WTThemes = New-Object System.Collections.ArrayList $Script:PSWinTerminalDefaultThemes | ForEach-Object { $null = $WTThemes.Add("$_") } $Script:PSWinTerminalThemes | ForEach-Object { $null = $WTThemes.Add("$_") } Write-Verbose "Count of themes: $($WTThemes.Count)" $WTThemes.ToArray() | Sort-Object } end { } } function Set-WTTheme { <# .SYNOPSIS Set-WTTheme will change current Windows Terminal theme .DESCRIPTION Set-WTTheme will change the current Windows Terminal theme. .INPUTS Name of the theme we want to use for the current Windows Terminal profile .OUTPUTS None. .EXAMPLE Set-WTTheme "Campbell Powershell" Set-WTTheme will set current Windows Terminal theme to 'Campbell Powershell' .LINK https://github.com/sassdawe/PSWinTerminal #> [CmdletBinding(SupportsShouldProcess = $true)] param ( # Name of theme [Parameter(Mandatory = $true)] <#[ArgumentCompleter( { param($Command, $Parameter, $WordToComplete, $CommandAst, $FakeBoundParams) if ($FakeBoundParams.Theme) { ( Initialize-WTThemeList | where-object { $_ -like $FakeBoundParams.Theme } ) | foreach-object { "`'$_`'" } } else { Initialize-WTThemeList | foreach-object { "`'$_`'" } } } )]#> [ValidateScript( { $_ -in (Initialize-WTThemeList) } )] [System.String] $Theme ) begin { Write-Verbose "Set-WTTheme - begin: $Theme" } process { If ($PSCmdlet.ShouldProcess("WT Theme to $Theme", "Set")) { if ( $Script:PSWinTerminalCurentProfileHasColorScheme -eq $false ) { Write-Verbose "Set-WTTheme - PSWinTerminalCurentProfileHasColorScheme FALSE" ( Get-Content -LiteralPath $Script:PSWinTerminalConfigPath | ForEach-Object { if ( $_.contains("`"guid`": `"$env:WT_PROFILE_ID`"") ) { "$_`n`t`t`t`t`"colorScheme`": `"$Theme`"," } else { $_ } } ) | Set-Content -LiteralPath $Script:PSWinTerminalConfigPath -PassThru:$false Initialize-PSWinTerminalConfig $Script:PSWinTerminalCurentProfileHasColorScheme = $true } else { Write-Verbose "Set-WTTheme - PSWinTerminalCurentProfileHasColorScheme TRUE" $currentProfileGuidLine = 0 $content = Get-Content -LiteralPath $Script:PSWinTerminalConfigPath :guid Foreach ( $line in $content ) { if ( $line.contains("`"guid`": `"$env:WT_PROFILE_ID`"") ) { $currentProfileGuidLine += 1 break guid } else { $currentProfileGuidLine += 1 } } Write-Verbose "Set-WTTheme - Guid is in line: $currentProfileGuidLine" for ($i = $currentProfileGuidLine - 1; $i -gt 0; $i--) { # "$i" + $content[$i] if ( $content[$i].Trim() -eq '{' ) { $currentProfileStartLine = $i + 1 break } } Write-Verbose "Set-WTTheme - Start is in line: $currentProfileStartLine" for ($i = $currentProfileStartLine - 1; $i -lt $content.Length; $i++ ) { # "$i" + $content[$i] if ( $content[$i].Trim() -eq '},' ) { $currentProfileEndLine = $i + 1 break } } Write-Verbose "Set-WTTheme - End is in line: $currentProfileEndLine" $newConfig = for ($i = 0; $i -lt $content.Length; $i++ ) { if ( ($i -ge $currentProfileStartLine - 1) -and ($i -lt $currentProfileEndLine) ) { if ( $content[$i].Contains("colorScheme") ) { Write-Verbose "Old $( Get-WTTheme )" $content[$i].Replace("`"colorScheme`": `"$( Get-WTTheme )`"", "`"colorScheme`": `"$Theme`"") Write-Verbose "New $Theme" } else { $content[$i] } } else { $content[$i] } } $newConfig | Set-Content -LiteralPath $Script:PSWinTerminalConfigPath -PassThru:$false Initialize-PSWinTerminalConfig } } } end { Write-Verbose "Set-WTTheme - end" } } Register-ArgumentCompleter -CommandName 'Set-WTTheme' -ParameterName 'Theme' -ScriptBlock { param($commandName, $parameterName, $stringMatch) Initialize-WTThemeList | Where-Object { $_ -like "$stringMatch*" } | Where-Object { -not [System.String]::IsNullOrEmpty($_) } | ForEach-Object { "`'$_`'" } } function Import-WTTheme { <# .SYNOPSIS Import-WTTheme .DESCRIPTION Import-WTTheme will import a valid scheme in JSON format from your clipboard .INPUTS [System.String] The content of your clipboard .OUTPUTS [System.String] The name of the imported theme .NOTES You need to copy the scheme you want to import to your clipboard .LINK Sites to look for themes for Windows Terminal: https://terminalsplash.com/ https://atomcorp.github.io/themes/ #> [CmdletBinding(SupportsShouldProcess = $true)] param ( ) begin { Write-Warning "Note: if you accidently break your Terminal's config, you can restore it with 'Restore-WTConfig'" Write-Verbose "Note: if you accidently break your Terminal's config, you can restore it with 'Restore-WTConfig'" } process { $clipboard = Get-Clipboard Write-Verbose "$clipboard" try { $clipboardJSON = ConvertFrom-Json -InputObject "$clipboard" if ( $clipboardJSON.name -in (Initialize-WTThemeList -Verbose:$false) ) { Throw "Theme with name `'$($clipboardJSON.name)`' already exists, cannot import this theme!" } if ( $clipboardJSON.name -and (($clipboardJSON | Get-Member -MemberType NoteProperty).count -ge 19 )) { $currentSchemesStartLine = 0 $hasCustomTheme = $false $content = Get-Content -LiteralPath $Script:PSWinTerminalConfigPath :schemes Foreach ( $line in $content ) { if ( $line.contains("`"schemes`": [") ) { Write-Verbose "Line: $line" if ( -not $line.EndsWith('],') ) { $hasCustomTheme = $true } $currentSchemesStartLine += 1 break schemes } else { $currentSchemesStartLine += 1 } } Write-Verbose "Schema start line: $currentSchemesStartLine" if ( $false -eq $hasCustomTheme ) { $newConfig = for ($i = 0; $i -lt $content.Length; $i++ ) { if ( ($i -eq ($currentSchemesStartLine -1) ) ) { "`"schemes`": [" "$($clipboardJSON | ConvertTo-Json | Out-String)" "]," } else { $content[$i] } } } else { $newConfig = for ($i = 0; $i -lt $content.Length; $i++ ) { if ( ($i -eq $currentSchemesStartLine ) ) { "$($clipboardJSON | ConvertTo-Json | Out-String)," $content[$i] } else { $content[$i] } } } $newConfig | Set-Content -LiteralPath $Script:PSWinTerminalConfigPath -PassThru:$false Initialize-PSWinTerminalConfig $clipboardJSON.name } else { Throw "The validation of the Theme `'$($clipboardJSON.name)`' failed, please check again" } } catch { Throw $_ } } end { } } Initialize-PSWinTerminalConfig Export-ModuleMember -Function * -Variable 'PSWinTerminalCurentProfileHasColorScheme' } else { Throw "You need to use Windows Terminal to use PSWinTerminal, and Windows" } |