Skip to content

Instantly share code, notes, and snippets.

View PauloDanielCarneiro's full-sized avatar

Paulo Daniel Carneiro PauloDanielCarneiro

  • São Paulo - Brazil
View GitHub Profile
@PauloDanielCarneiro
PauloDanielCarneiro / wsl-terminator.vbs
Created July 1, 2020 12:19 — forked from raneomik/wsl-terminator.vbs
vbscript to run Terminator and xServer under wsl
' https://medium.com/@bhupathy/install-terminator-on-windows-with-wsl-2826591d2156
set shell = CreateObject("Wscript.Shell")
xServerProcessName = "vcxsrv.exe"
RunXserverProcess( xServerProcessName )
RunTerminator()
KillXserverProcess( xServerProcessName )