Skip to content

Instantly share code, notes, and snippets.

@ran-dall
Created July 17, 2025 00:48
Show Gist options
  • Save ran-dall/022419a150cb428c4692b677929aa6cd to your computer and use it in GitHub Desktop.
Save ran-dall/022419a150cb428c4692b677929aa6cd to your computer and use it in GitHub Desktop.
VS Code Settings for Flatpak Terminals
{
// 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