Fix terminal setup json

The json is missing a comma after the args array
This commit is contained in:
ironhaven
2023-10-22 17:50:56 -05:00
committed by GitHub
parent b74eb7e9f4
commit 7ea8ec648e
+1 -1
View File
@@ -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
}