Skip to content

Instantly share code, notes, and snippets.

@eizedev
Last active January 18, 2021 09:14
Show Gist options
  • Save eizedev/f5b940887f981b6b7878267ff5a679c7 to your computer and use it in GitHub Desktop.
Save eizedev/f5b940887f981b6b7878267ff5a679c7 to your computer and use it in GitHub Desktop.
windows-terminal and powershell core integration for files-community files app (https://github.com/files-community/Files)
{
"version": 1,
"DefaultTerminalName": "WindowsTerminal",
"terminals": [
{
"name": "CMD",
"path": "cmd.exe",
"arguments": "",
"icon": ""
},
{
"name": "PowerShell",
"path": "powershell.exe",
"arguments": "-noexit -command \"cd '{0}'\"",
"icon": ""
},
{
"name": "PowerShell Core",
"path": "pwsh.exe",
"arguments": "-WorkingDirectory \"{0}\"",
"icon": ""
},
{
"name": "WindowsTerminal",
"path": "wt.exe",
"arguments": "-d \"{0}\"",
"icon": ""
}
]
}
@eizedev
Copy link
Author

eizedev commented Jan 18, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment