We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In terminals/gnome-terminal/src/tools.sh
terminals/gnome-terminal/src/tools.sh
gnomeVersion="$(expr "$(gnome-terminal --version)" : '.* \(.*[.].*[.].*\)$')" is too clever. gnome-terminal --version) outputs this
gnomeVersion="$(expr "$(gnome-terminal --version)" : '.* \(.*[.].*[.].*\)$')"
gnome-terminal --version)
$ gnome-terminal --version # GNOME Terminal 3.47.0 using VTE 0.70.1 +BIDI +GNUTLS +ICU +SYSTEMD
and so the expr is parsed into 0.70.1 +BIDI +GNUTLS +ICU +SYSTEMD. Then newGnome is set to false, and gnome2 scripts are called.
0.70.1 +BIDI +GNUTLS +ICU +SYSTEMD
newGnome
The text was updated successfully, but these errors were encountered:
I believe #101 will fix this problem.
Sorry, something went wrong.
No branches or pull requests
In
terminals/gnome-terminal/src/tools.sh
gnomeVersion="$(expr "$(gnome-terminal --version)" : '.* \(.*[.].*[.].*\)$')"
is too clever.gnome-terminal --version)
outputs thisand so the expr is parsed into
0.70.1 +BIDI +GNUTLS +ICU +SYSTEMD
. ThennewGnome
is set to false, and gnome2 scripts are called.The text was updated successfully, but these errors were encountered: