Using the default Terminal in the Flatpak Codium #2388
Replies: 3 comments 3 replies
|
Yo @AustinMarstaller 👋 Saw your post, and I ran into the same kinda mess. Here’s the lowdown and some hacks you can try: What’s up
Hacks to try
|
|
It seems to be an issue with "terminal.integrated.profiles.linux": {
"bash": {
"path": "/app/bin/host-spawn",
"args": ["bash"],
"icon": "terminal-bash",
"overrideName": true
}
}This is currently documented in the VSCodium README. |
|
I remember VSCodium itself not inheriting my bash environment, and therefore extensions who depend on runtimes and tools in your path won't work. VSCodium itself needs to be spawned from outside the sandbox in order to properly function. I use the version from the homebrew ublue tap: It might be worth getting attention from the maintainers to the possibility of ditching the Flatpak entirely for a cask in homebrew/core. The above tap is more a proof-of-concept even though it works for me. |
Uh oh!
There was an error while loading. Please reload this page.
I am using Pop!_OS and have installed Codium using Flatpak. I want to use the default terminal instead of the sandbox terminal that Codium offers.
Following the instructions here, https://github.com/flathub/com.vscodium.codium#host-shell , I edited my settings.json file to look like this:
However, I now receive this error message
and do indeed have my desired terminal. What is this error message referring to and how can I fix it?
All reactions