2019-10-10 18:10:17 -05:00
|
|
|
param (
|
|
|
|
[string]
|
2019-10-21 19:37:23 -05:00
|
|
|
$CommandPath = "konsole"
|
2019-10-10 18:10:17 -05:00
|
|
|
)
|
|
|
|
|
2019-10-21 19:37:23 -05:00
|
|
|
# Set the display variable for this process
|
|
|
|
Set-Item -Path Env:DISPLAY "127.0.0.1:0.0"
|
|
|
|
Set-Item -Path Env:WSLENV "DISPLAY/u"
|
|
|
|
|
|
|
|
Start-Process -FilePath "wsl.exe" -ArgumentList $CommandPath -WindowStyle Hidden
|