Created
July 17, 2025 00:48
-
-
Save ran-dall/022419a150cb428c4692b677929aa6cd to your computer and use it in GitHub Desktop.
VS Code Settings for Flatpak Terminals
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Linux terminal profiles | |
// Only for use with VS Code Flatpak | |
"terminal.integrated.profiles.linux": { | |
"bash": { | |
"path": "/app/bin/host-spawn", | |
"args": [ | |
"bash" | |
], | |
"icon": "terminal-bash", | |
"overrideName": true | |
}, | |
"zsh": { | |
"path": "/app/bin/host-spawn", | |
"args": [ | |
"zsh" | |
], | |
"overrideName": true | |
}, | |
"fish": { | |
"path": "/app/bin/host-spawn", | |
"args": [ | |
"fish" | |
], | |
"overrideName": true | |
}, | |
"tmux": { | |
"path": "/app/bin/host-spawn", | |
"args": [ | |
"tmux" | |
], | |
"icon": "terminal-tmux", | |
"overrideName": true | |
}, | |
"pwsh": { | |
"path": "/app/bin/host-spawn", | |
"args": [ | |
"pwsh" | |
], | |
"icon": "terminal-powershell", | |
"overrideName": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment