How to add calculations to the gnome search bar?
up vote
2
down vote
favorite
I was using Gnome on PureOS for a month or so, but now I'm back on Ubuntu 18.04. The thing I loved in PureOS is that I could do calculations in the Gnome search bar. But when I type any calculations (1+2
) in the gnome search bar I see no results (it says "No results" in Dutch):
I tried this gnome extension and it's enabled in Gnome tweak tool as you can see below, but I see no results (I rebooted to be sure).
Does anybody know how I can activate calculations in the Gnome search bar?
gnome-shell search calculator
add a comment |
up vote
2
down vote
favorite
I was using Gnome on PureOS for a month or so, but now I'm back on Ubuntu 18.04. The thing I loved in PureOS is that I could do calculations in the Gnome search bar. But when I type any calculations (1+2
) in the gnome search bar I see no results (it says "No results" in Dutch):
I tried this gnome extension and it's enabled in Gnome tweak tool as you can see below, but I see no results (I rebooted to be sure).
Does anybody know how I can activate calculations in the Gnome search bar?
gnome-shell search calculator
Looks like the extension is abandoned and incompatible with your recent GNOME Shell version. Bug reports are off topic here but you can try to contact its author to file a bug report.
– David Foerster
Apr 28 at 18:38
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I was using Gnome on PureOS for a month or so, but now I'm back on Ubuntu 18.04. The thing I loved in PureOS is that I could do calculations in the Gnome search bar. But when I type any calculations (1+2
) in the gnome search bar I see no results (it says "No results" in Dutch):
I tried this gnome extension and it's enabled in Gnome tweak tool as you can see below, but I see no results (I rebooted to be sure).
Does anybody know how I can activate calculations in the Gnome search bar?
gnome-shell search calculator
I was using Gnome on PureOS for a month or so, but now I'm back on Ubuntu 18.04. The thing I loved in PureOS is that I could do calculations in the Gnome search bar. But when I type any calculations (1+2
) in the gnome search bar I see no results (it says "No results" in Dutch):
I tried this gnome extension and it's enabled in Gnome tweak tool as you can see below, but I see no results (I rebooted to be sure).
Does anybody know how I can activate calculations in the Gnome search bar?
gnome-shell search calculator
gnome-shell search calculator
edited Dec 7 at 5:11
pomsky
27.7k1185111
27.7k1185111
asked Mar 23 at 11:43
kramer65
80931430
80931430
Looks like the extension is abandoned and incompatible with your recent GNOME Shell version. Bug reports are off topic here but you can try to contact its author to file a bug report.
– David Foerster
Apr 28 at 18:38
add a comment |
Looks like the extension is abandoned and incompatible with your recent GNOME Shell version. Bug reports are off topic here but you can try to contact its author to file a bug report.
– David Foerster
Apr 28 at 18:38
Looks like the extension is abandoned and incompatible with your recent GNOME Shell version. Bug reports are off topic here but you can try to contact its author to file a bug report.
– David Foerster
Apr 28 at 18:38
Looks like the extension is abandoned and incompatible with your recent GNOME Shell version. Bug reports are off topic here but you can try to contact its author to file a bug report.
– David Foerster
Apr 28 at 18:38
add a comment |
3 Answers
3
active
oldest
votes
up vote
3
down vote
It works for me in Ubuntu 17.10 (and Wayland) with double parentheses, which is used also on the command line
$ echo "$((1+2))"
3
So try
((1+2))
See this screenshot,
After an update & upgrade it works without parentheses and with single parentheses too,
1+2
(1+2)
Please notice that AskUbuntu is not intended for the developing release. But you are welcome to participate in the development or testing via other web sites. See this link,
Ubuntu Development version / How to participate
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
add a comment |
up vote
1
down vote
I found this from Built-in calculator to GNOME search window
The pre-installed GNOME Calculator in Ubuntu 18.04 is a snap application which may lack some features provided by the traditional one due to restrictions of snap packages.
Remove the snap application by running
snap remove gnome-calculator
and install the traditional apt one by running
sudo apt install gnome-calculator
You may need to to restart GNOME shell by hitting Alt+F2, then typing r and pressing Enter for it to take effect.
New contributor
add a comment |
up vote
0
down vote
accepted
I checked out the github page of the extension I was trying to use, which says:
This extension is now obsolete as the gnome calculator provides this functionality since g-s 3.14
So I installed Gnome Calculator using the Software center and now it works like a charm.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1018523%2fhow-to-add-calculations-to-the-gnome-search-bar%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
It works for me in Ubuntu 17.10 (and Wayland) with double parentheses, which is used also on the command line
$ echo "$((1+2))"
3
So try
((1+2))
See this screenshot,
After an update & upgrade it works without parentheses and with single parentheses too,
1+2
(1+2)
Please notice that AskUbuntu is not intended for the developing release. But you are welcome to participate in the development or testing via other web sites. See this link,
Ubuntu Development version / How to participate
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
add a comment |
up vote
3
down vote
It works for me in Ubuntu 17.10 (and Wayland) with double parentheses, which is used also on the command line
$ echo "$((1+2))"
3
So try
((1+2))
See this screenshot,
After an update & upgrade it works without parentheses and with single parentheses too,
1+2
(1+2)
Please notice that AskUbuntu is not intended for the developing release. But you are welcome to participate in the development or testing via other web sites. See this link,
Ubuntu Development version / How to participate
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
add a comment |
up vote
3
down vote
up vote
3
down vote
It works for me in Ubuntu 17.10 (and Wayland) with double parentheses, which is used also on the command line
$ echo "$((1+2))"
3
So try
((1+2))
See this screenshot,
After an update & upgrade it works without parentheses and with single parentheses too,
1+2
(1+2)
Please notice that AskUbuntu is not intended for the developing release. But you are welcome to participate in the development or testing via other web sites. See this link,
Ubuntu Development version / How to participate
It works for me in Ubuntu 17.10 (and Wayland) with double parentheses, which is used also on the command line
$ echo "$((1+2))"
3
So try
((1+2))
See this screenshot,
After an update & upgrade it works without parentheses and with single parentheses too,
1+2
(1+2)
Please notice that AskUbuntu is not intended for the developing release. But you are welcome to participate in the development or testing via other web sites. See this link,
Ubuntu Development version / How to participate
edited Mar 23 at 17:40
answered Mar 23 at 17:06
sudodus
22.2k32871
22.2k32871
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
add a comment |
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
Hmmm, this doesn't work either. Alright, I'll just wait until 18.04 is officially released and see whether it works then. Thanks for your effort anyway!
– kramer65
Mar 28 at 10:08
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
@kramer65, You are welcome :-)
– sudodus
Mar 28 at 10:20
add a comment |
up vote
1
down vote
I found this from Built-in calculator to GNOME search window
The pre-installed GNOME Calculator in Ubuntu 18.04 is a snap application which may lack some features provided by the traditional one due to restrictions of snap packages.
Remove the snap application by running
snap remove gnome-calculator
and install the traditional apt one by running
sudo apt install gnome-calculator
You may need to to restart GNOME shell by hitting Alt+F2, then typing r and pressing Enter for it to take effect.
New contributor
add a comment |
up vote
1
down vote
I found this from Built-in calculator to GNOME search window
The pre-installed GNOME Calculator in Ubuntu 18.04 is a snap application which may lack some features provided by the traditional one due to restrictions of snap packages.
Remove the snap application by running
snap remove gnome-calculator
and install the traditional apt one by running
sudo apt install gnome-calculator
You may need to to restart GNOME shell by hitting Alt+F2, then typing r and pressing Enter for it to take effect.
New contributor
add a comment |
up vote
1
down vote
up vote
1
down vote
I found this from Built-in calculator to GNOME search window
The pre-installed GNOME Calculator in Ubuntu 18.04 is a snap application which may lack some features provided by the traditional one due to restrictions of snap packages.
Remove the snap application by running
snap remove gnome-calculator
and install the traditional apt one by running
sudo apt install gnome-calculator
You may need to to restart GNOME shell by hitting Alt+F2, then typing r and pressing Enter for it to take effect.
New contributor
I found this from Built-in calculator to GNOME search window
The pre-installed GNOME Calculator in Ubuntu 18.04 is a snap application which may lack some features provided by the traditional one due to restrictions of snap packages.
Remove the snap application by running
snap remove gnome-calculator
and install the traditional apt one by running
sudo apt install gnome-calculator
You may need to to restart GNOME shell by hitting Alt+F2, then typing r and pressing Enter for it to take effect.
New contributor
New contributor
answered Dec 6 at 16:42
Esteban Richmond Salazar
111
111
New contributor
New contributor
add a comment |
add a comment |
up vote
0
down vote
accepted
I checked out the github page of the extension I was trying to use, which says:
This extension is now obsolete as the gnome calculator provides this functionality since g-s 3.14
So I installed Gnome Calculator using the Software center and now it works like a charm.
add a comment |
up vote
0
down vote
accepted
I checked out the github page of the extension I was trying to use, which says:
This extension is now obsolete as the gnome calculator provides this functionality since g-s 3.14
So I installed Gnome Calculator using the Software center and now it works like a charm.
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I checked out the github page of the extension I was trying to use, which says:
This extension is now obsolete as the gnome calculator provides this functionality since g-s 3.14
So I installed Gnome Calculator using the Software center and now it works like a charm.
I checked out the github page of the extension I was trying to use, which says:
This extension is now obsolete as the gnome calculator provides this functionality since g-s 3.14
So I installed Gnome Calculator using the Software center and now it works like a charm.
answered May 6 at 15:18
kramer65
80931430
80931430
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1018523%2fhow-to-add-calculations-to-the-gnome-search-bar%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Looks like the extension is abandoned and incompatible with your recent GNOME Shell version. Bug reports are off topic here but you can try to contact its author to file a bug report.
– David Foerster
Apr 28 at 18:38