From 34d7524073fb8a950ac94cc179de843b72f0ad1a Mon Sep 17 00:00:00 2001 From: Vladislav Walek <22072258+vwalek@users.noreply.github.com> Date: Wed, 16 Jun 2021 07:28:14 -0700 Subject: [PATCH] terminal for linux change - using profiles Signed-off-by: Vladislav Walek <22072258+vwalek@users.noreply.github.com> --- flatpak-warning.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/flatpak-warning.txt b/flatpak-warning.txt index 431de40..85d2702 100644 --- a/flatpak-warning.txt +++ b/flatpak-warning.txt @@ -19,8 +19,13 @@ To make the Integrated Terminal automatically use the host system's shell, you can add this to the settings: { - "terminal.integrated.shell.linux": "/usr/bin/env", - "terminal.integrated.shellArgs.linux": ["--", "flatpak-spawn", "--host", "bash"] + "terminal.integrated.defaultProfile.linux": "bash", + "terminal.integrated.profiles.linux": { + "bash": { + "path": "/usr/bin/flatpak-spawn", + "args": ["--host", "--env=TERM=xterm-256color", "bash"] + } + } } This flatpak provides a standard development environment (gcc, python, etc).