We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c99dea6 commit 0d0eb96Copy full SHA for 0d0eb96
pwsh/StartX.ps1
@@ -203,6 +203,17 @@ function StartProcess([string] $AppName) {
203
# For Apps that modify Env
204
$oldEnvPath = $Env:Path
205
switch( $AppName ) {
206
+ 'Codium' { # verbose, non-fb, stdout only
207
+ # Later, retrieve these values from a dictionary
208
+ $AppName = 'VSCodium'
209
+ # not required: set in json settings file instead
210
+
211
+ Init-App git-cmd
212
+ AddToEnvPath($PFilesX64Dir + '\Codium\')
213
214
+ # Being in home dir location is not required
215
+ $RedirectStandardOutVal = $ShellHome + '\log\' + $AppName + '_out.log'
216
+ }
217
'Code' { # verbose, non-fb, stdout only
218
# Later, retrieve these values from a dictionary
219
$AppName = 'VSCode'
0 commit comments