From 7ea8ec648e8e8ff5b43dc54338a78ca0c67aae80 Mon Sep 17 00:00:00 2001 From: ironhaven Date: Sun, 22 Oct 2023 17:50:56 -0500 Subject: [PATCH] Fix terminal setup json The json is missing a comma after the args array --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa85ff2..d4e68e7 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ And make sure that you have the following lines there: "terminal.integrated.profiles.linux": { "bash": { "path": "/usr/bin/flatpak-spawn", - "args": ["--host", "--env=TERM=xterm-256color", "bash"] + "args": ["--host", "--env=TERM=xterm-256color", "bash"], "icon": "terminal-bash", "overrideName": true }