-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
External Terminal won't open #340
Comments
Same with gnome-terminal |
@Altonss Are you also on Gentoo? |
@daiyam this issue is also found on Debian & Mint (Ubuntu-based) |
Hi @timkenhan & @Altonss, can you try to change from |
I found that Then a workaround will be trying to create a simple script to launch your terminal and put on a place that codium can reach like #!/usr/bin/env bash
function external(){
host-spawn "<YOUR_TERMINAL>" "${@}"
}
external "${@}" then change the permission to exec like "terminal.external.linuxExec": "<FILL_WITH_FULL_PATH_TO_SCRIPT>/external-terminal", This will do the trick |
@noonsleeper I've tried your example but it doesn't seem to work either.
After changing
I've ensured the script is executable at the designated path. |
@timkenhan is Also, I don't use KDE but Gnome, then remember to change $HOME/.local/bin/external-terminal #!/usr/bin/env bash
function external(){
host-spawn "konsole" "${@}"
}
external "${@}" |
I've been using the flatpak VSCodium for a while, and I haven't been able to open external terminal.
The .deb version never seem to have this issue. Perhaps this is some kind of sandbox related issue?
I was just trying it out on my Gentoo system running KDE, but I've reproduced the same behavior on Debian (also running KDE) as well as Linux Mint (running Cinnamon). On the Window output, this message appears everytime I hit Ctrl-Shift-C:
I've tried playing around with the
terminal.external.linuxExec
with both the original/usr/bin/xterm
as well as the current/usr/bin/konsole
, neither of which seems to work.The text was updated successfully, but these errors were encountered: