From 382469b5785062764349ce57830f9efd15fd8764 Mon Sep 17 00:00:00 2001 From: Felipe Markson dos Santos Monteiro <47871564+felipemarkson@users.noreply.github.com> Date: Wed, 13 Apr 2022 12:41:47 -0300 Subject: [PATCH] Backing to depricated option to Integrated Terminal More details of the problem in: https://github.com/flathub/com.visualstudio.code/issues/288 --- flatpak-warning.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/flatpak-warning.txt b/flatpak-warning.txt index 85d2702..18aefaf 100644 --- a/flatpak-warning.txt +++ b/flatpak-warning.txt @@ -18,14 +18,14 @@ To execute commands on the host system, run inside the sandbox: To make the Integrated Terminal automatically use the host system's shell, you can add this to the settings: + { - "terminal.integrated.defaultProfile.linux": "bash", - "terminal.integrated.profiles.linux": { - "bash": { - "path": "/usr/bin/flatpak-spawn", - "args": ["--host", "--env=TERM=xterm-256color", "bash"] - } - } + "terminal.integrated.shell.linux": "/usr/bin/flatpak-spawn", + "terminal.integrated.shellArgs.linux": [ + "--host", + "--env=TERM='xterm-256color'", + "/bin/bash" + ], } This flatpak provides a standard development environment (gcc, python, etc).