Open kkuriata opened 2 years ago
Unable to reproduce, but this is probably because I remember fixing an issue that sounds like this one a few weeks ago. I should polish some more issues off and get a release out so the fix gets out into the wild sometime
I am on 3.9.0 and I have this issue. Essentially I have a script that creates and sets up five tabs.
guake -r "sandbox-dev" -e "cd ~/ap/ckm && source /usr/local/bin/dev.sh" guake -n "local-dev" -r "local-dev" -e "cd ~/ap/local && source /usr/local/bin/localdev.sh" guake -n "local-dev" -r "local-dev" -e "cd ~/ap/local && source /usr/local/bin/localdev.sh" guake -n "f-dev" -r "f-dev" -e "cd ~/ap/fam" guake -n "f-dev" -r "f-dev" -e "cd ~/ap/fam" guake -s 1
I have this run at startup. It results in 10 tabs. 5 of them being named "Terminal" in between all my renamed tabs. This worked correctly on a previous version but I am not sure what version it was.
@jleonar
In Guake 3.9.0, the behaviour of the -e command line switch was changed so that it always opens a new tab (see #2057).
It should be enough to omit switch -n (with the parameter) in the example above and it will work as expected.
Describe the bug
When spawning a new tab from command line with command parameter
-e
, there are two tabs opened instead of one.Expected behavior
My command opens one tab with title set to
Test title
and executingecho 12345
in it.Actual behavior
I try to spawn a new tab using a command below, but actually two tabs are opened - both in the same directory (
~/some-folder
), but only the last one executesecho
command.To Reproduce
Using from terminal (tried from
guake
andkonsole
separately, same issue):