Ubuntu 18.04.1 LTS don't install Conky Manager
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
I need to install Conky Manager to add themes and change settings to make my own preferences on a desktop screen. However when I type:
sudo add-apt-repository ppa:teejee2008/ppa
sudo apt update
sudo apt install conky-manager
My Ubuntu says to me that I'm unable to find conky manager package. Can anyone help me to install Conky Manager to personalize my desktop screen properly? Thanks!:)
package-management software-installation 18.04 conky budgie
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
3
down vote
favorite
I need to install Conky Manager to add themes and change settings to make my own preferences on a desktop screen. However when I type:
sudo add-apt-repository ppa:teejee2008/ppa
sudo apt update
sudo apt install conky-manager
My Ubuntu says to me that I'm unable to find conky manager package. Can anyone help me to install Conky Manager to personalize my desktop screen properly? Thanks!:)
package-management software-installation 18.04 conky budgie
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I need to install Conky Manager to add themes and change settings to make my own preferences on a desktop screen. However when I type:
sudo add-apt-repository ppa:teejee2008/ppa
sudo apt update
sudo apt install conky-manager
My Ubuntu says to me that I'm unable to find conky manager package. Can anyone help me to install Conky Manager to personalize my desktop screen properly? Thanks!:)
package-management software-installation 18.04 conky budgie
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I need to install Conky Manager to add themes and change settings to make my own preferences on a desktop screen. However when I type:
sudo add-apt-repository ppa:teejee2008/ppa
sudo apt update
sudo apt install conky-manager
My Ubuntu says to me that I'm unable to find conky manager package. Can anyone help me to install Conky Manager to personalize my desktop screen properly? Thanks!:)
package-management software-installation 18.04 conky budgie
package-management software-installation 18.04 conky budgie
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 12 mins ago
N0rbert
16.5k33478
16.5k33478
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 11 hours ago


J-Mello
162
162
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
J-Mello is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
2
down vote
This article How to Install and Use Conky Manager on Ubuntu 16.04/17.04 should still work in Ubuntu 18.04.
You don't need to add the repository as conky is already in Ubuntu's repository. Simply follow these steps:
sudo apt update
sudo apt install conky-all
Once installed, you have to run Conky from the command line.
conky
You can modify conky to do your own preferences. Here's the top half of mine:
Conky Manager isn't in Ubuntu 17.04's repository as the article mentions. As Organic Marble's answer states it isn't in 18.04's repository either. The article does say how to install it though:
wget https://launchpad.net/~teejee2008/+archive/ubuntu/ppa/+files/conky-manager_2.4~136~ubuntu16.04.1_amd64.deb
sudo apt install gdebi
sudo gdebi conky-manager*.deb
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
1
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
 |Â
show 1 more comment
up vote
1
down vote
Conky-manager isn't in the ppa for 18.04 which is why you couldn't install it.
Unfortunately copying the .deb from 16.04 doesn't work either, because a dependency ("realpath") is missing.
It appears that getting conky-manager to work in 18.04 will not be easy.
It will probably be easier to edit your conky manually.
add a comment |Â
up vote
1
down vote
Let's start with analysis of this PPA problem. You are going to install conky-manager
package, so you know exact name and target Ubuntu version.
In such case you should use special PPA search page on launchpad.net - https://launchpad.net/ubuntu/+ppas with the corresponding search query "conky-manager
". This page will return search results. You should click all these links one-after-one and select Published in: Bionic filter. You can choose any PPA which you trust more.
Other way is to use Y PPA Manager.
I ended with this one (ppa:mark-pcnetspec/conky-manager-pm9
) as it has realpath
package in PPA:
sudo add-apt-repository ppa:mark-pcnetspec/conky-manager-pm9
sudo apt-get install conky-manager
After installation you will get Conky Manager 2.4 running on your Ubuntu 18.04 LTS:
Note: packages from two other PPAs (ppa:marius.quabeck/nerdzoom
and ppa:tomtomtom/conky-manager
) are really depends on realpath
package (as were noted by @OrganicMarble), but do not include it.
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
This article How to Install and Use Conky Manager on Ubuntu 16.04/17.04 should still work in Ubuntu 18.04.
You don't need to add the repository as conky is already in Ubuntu's repository. Simply follow these steps:
sudo apt update
sudo apt install conky-all
Once installed, you have to run Conky from the command line.
conky
You can modify conky to do your own preferences. Here's the top half of mine:
Conky Manager isn't in Ubuntu 17.04's repository as the article mentions. As Organic Marble's answer states it isn't in 18.04's repository either. The article does say how to install it though:
wget https://launchpad.net/~teejee2008/+archive/ubuntu/ppa/+files/conky-manager_2.4~136~ubuntu16.04.1_amd64.deb
sudo apt install gdebi
sudo gdebi conky-manager*.deb
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
1
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
 |Â
show 1 more comment
up vote
2
down vote
This article How to Install and Use Conky Manager on Ubuntu 16.04/17.04 should still work in Ubuntu 18.04.
You don't need to add the repository as conky is already in Ubuntu's repository. Simply follow these steps:
sudo apt update
sudo apt install conky-all
Once installed, you have to run Conky from the command line.
conky
You can modify conky to do your own preferences. Here's the top half of mine:
Conky Manager isn't in Ubuntu 17.04's repository as the article mentions. As Organic Marble's answer states it isn't in 18.04's repository either. The article does say how to install it though:
wget https://launchpad.net/~teejee2008/+archive/ubuntu/ppa/+files/conky-manager_2.4~136~ubuntu16.04.1_amd64.deb
sudo apt install gdebi
sudo gdebi conky-manager*.deb
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
1
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
 |Â
show 1 more comment
up vote
2
down vote
up vote
2
down vote
This article How to Install and Use Conky Manager on Ubuntu 16.04/17.04 should still work in Ubuntu 18.04.
You don't need to add the repository as conky is already in Ubuntu's repository. Simply follow these steps:
sudo apt update
sudo apt install conky-all
Once installed, you have to run Conky from the command line.
conky
You can modify conky to do your own preferences. Here's the top half of mine:
Conky Manager isn't in Ubuntu 17.04's repository as the article mentions. As Organic Marble's answer states it isn't in 18.04's repository either. The article does say how to install it though:
wget https://launchpad.net/~teejee2008/+archive/ubuntu/ppa/+files/conky-manager_2.4~136~ubuntu16.04.1_amd64.deb
sudo apt install gdebi
sudo gdebi conky-manager*.deb
This article How to Install and Use Conky Manager on Ubuntu 16.04/17.04 should still work in Ubuntu 18.04.
You don't need to add the repository as conky is already in Ubuntu's repository. Simply follow these steps:
sudo apt update
sudo apt install conky-all
Once installed, you have to run Conky from the command line.
conky
You can modify conky to do your own preferences. Here's the top half of mine:
Conky Manager isn't in Ubuntu 17.04's repository as the article mentions. As Organic Marble's answer states it isn't in 18.04's repository either. The article does say how to install it though:
wget https://launchpad.net/~teejee2008/+archive/ubuntu/ppa/+files/conky-manager_2.4~136~ubuntu16.04.1_amd64.deb
sudo apt install gdebi
sudo gdebi conky-manager*.deb
edited 10 hours ago
answered 10 hours ago


WinEunuuchs2Unix
36.6k760138
36.6k760138
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
1
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
 |Â
show 1 more comment
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
1
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
The question isn't about conky, it's about conky-manager, and you can't install that (at least not easily) in 18.04
– Organic Marble
10 hours ago
1
1
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
@OrganicMarble I included another section from the article for the conky manager portion. I was under the impression the OP thought conky-manager was needed to run conky. I'm trying to point out conky-all will work from repository.
– WinEunuuchs2Unix
10 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
That method of installing conky-manager will not work in 18.04 due to missing dependencies.
– Organic Marble
9 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
@OrganicMarble I noticed the "realpath" dependency in your answer. I came across that a year or two ago and meant to research it. Unfortunately I've booted with 16.04 and need to reclone it to another partition and upgrade the clone to 18.04 before testing.
– WinEunuuchs2Unix
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
Hello WinEunuuchs2Unix! So,by these commands for 17.04 version conky manager didn't works.I think this happened cause my version is 18.04 as Organic Marble said.Meanwhile,I'm setting here to know how it works fine to me in a Tilix terminal.When I've used windows 8.1 the settings in rainmeter was similar to conky terminal.I'd like conky manager works ,but in a terminal I think I can manage my skins too and it's not so difficult as I thought.Thank you two to anwsering for me! :)
– J-Mello
8 hours ago
 |Â
show 1 more comment
up vote
1
down vote
Conky-manager isn't in the ppa for 18.04 which is why you couldn't install it.
Unfortunately copying the .deb from 16.04 doesn't work either, because a dependency ("realpath") is missing.
It appears that getting conky-manager to work in 18.04 will not be easy.
It will probably be easier to edit your conky manually.
add a comment |Â
up vote
1
down vote
Conky-manager isn't in the ppa for 18.04 which is why you couldn't install it.
Unfortunately copying the .deb from 16.04 doesn't work either, because a dependency ("realpath") is missing.
It appears that getting conky-manager to work in 18.04 will not be easy.
It will probably be easier to edit your conky manually.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Conky-manager isn't in the ppa for 18.04 which is why you couldn't install it.
Unfortunately copying the .deb from 16.04 doesn't work either, because a dependency ("realpath") is missing.
It appears that getting conky-manager to work in 18.04 will not be easy.
It will probably be easier to edit your conky manually.
Conky-manager isn't in the ppa for 18.04 which is why you couldn't install it.
Unfortunately copying the .deb from 16.04 doesn't work either, because a dependency ("realpath") is missing.
It appears that getting conky-manager to work in 18.04 will not be easy.
It will probably be easier to edit your conky manually.
answered 10 hours ago


Organic Marble
10k63255
10k63255
add a comment |Â
add a comment |Â
up vote
1
down vote
Let's start with analysis of this PPA problem. You are going to install conky-manager
package, so you know exact name and target Ubuntu version.
In such case you should use special PPA search page on launchpad.net - https://launchpad.net/ubuntu/+ppas with the corresponding search query "conky-manager
". This page will return search results. You should click all these links one-after-one and select Published in: Bionic filter. You can choose any PPA which you trust more.
Other way is to use Y PPA Manager.
I ended with this one (ppa:mark-pcnetspec/conky-manager-pm9
) as it has realpath
package in PPA:
sudo add-apt-repository ppa:mark-pcnetspec/conky-manager-pm9
sudo apt-get install conky-manager
After installation you will get Conky Manager 2.4 running on your Ubuntu 18.04 LTS:
Note: packages from two other PPAs (ppa:marius.quabeck/nerdzoom
and ppa:tomtomtom/conky-manager
) are really depends on realpath
package (as were noted by @OrganicMarble), but do not include it.
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
add a comment |Â
up vote
1
down vote
Let's start with analysis of this PPA problem. You are going to install conky-manager
package, so you know exact name and target Ubuntu version.
In such case you should use special PPA search page on launchpad.net - https://launchpad.net/ubuntu/+ppas with the corresponding search query "conky-manager
". This page will return search results. You should click all these links one-after-one and select Published in: Bionic filter. You can choose any PPA which you trust more.
Other way is to use Y PPA Manager.
I ended with this one (ppa:mark-pcnetspec/conky-manager-pm9
) as it has realpath
package in PPA:
sudo add-apt-repository ppa:mark-pcnetspec/conky-manager-pm9
sudo apt-get install conky-manager
After installation you will get Conky Manager 2.4 running on your Ubuntu 18.04 LTS:
Note: packages from two other PPAs (ppa:marius.quabeck/nerdzoom
and ppa:tomtomtom/conky-manager
) are really depends on realpath
package (as were noted by @OrganicMarble), but do not include it.
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Let's start with analysis of this PPA problem. You are going to install conky-manager
package, so you know exact name and target Ubuntu version.
In such case you should use special PPA search page on launchpad.net - https://launchpad.net/ubuntu/+ppas with the corresponding search query "conky-manager
". This page will return search results. You should click all these links one-after-one and select Published in: Bionic filter. You can choose any PPA which you trust more.
Other way is to use Y PPA Manager.
I ended with this one (ppa:mark-pcnetspec/conky-manager-pm9
) as it has realpath
package in PPA:
sudo add-apt-repository ppa:mark-pcnetspec/conky-manager-pm9
sudo apt-get install conky-manager
After installation you will get Conky Manager 2.4 running on your Ubuntu 18.04 LTS:
Note: packages from two other PPAs (ppa:marius.quabeck/nerdzoom
and ppa:tomtomtom/conky-manager
) are really depends on realpath
package (as were noted by @OrganicMarble), but do not include it.
Let's start with analysis of this PPA problem. You are going to install conky-manager
package, so you know exact name and target Ubuntu version.
In such case you should use special PPA search page on launchpad.net - https://launchpad.net/ubuntu/+ppas with the corresponding search query "conky-manager
". This page will return search results. You should click all these links one-after-one and select Published in: Bionic filter. You can choose any PPA which you trust more.
Other way is to use Y PPA Manager.
I ended with this one (ppa:mark-pcnetspec/conky-manager-pm9
) as it has realpath
package in PPA:
sudo add-apt-repository ppa:mark-pcnetspec/conky-manager-pm9
sudo apt-get install conky-manager
After installation you will get Conky Manager 2.4 running on your Ubuntu 18.04 LTS:
Note: packages from two other PPAs (ppa:marius.quabeck/nerdzoom
and ppa:tomtomtom/conky-manager
) are really depends on realpath
package (as were noted by @OrganicMarble), but do not include it.
edited 2 hours ago
answered 2 hours ago
N0rbert
16.5k33478
16.5k33478
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
add a comment |Â
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Yeah! It works! Thank you very much to anwsering for me! Hey Organic Marble and WinEunuuchs2Unix it works! N0rbert has a crystal ball! I wanna share the screenshot to you but I don't know how to do it here yet!
– J-Mello
43 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
Great! So you can vote up and/or accept the answer :)
– N0rbert
38 mins ago
add a comment |Â
J-Mello is a new contributor. Be nice, and check out our Code of Conduct.
J-Mello is a new contributor. Be nice, and check out our Code of Conduct.
J-Mello is a new contributor. Be nice, and check out our Code of Conduct.
J-Mello is a new contributor. Be nice, and check out our Code of Conduct.
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1079596%2fubuntu-18-04-1-lts-dont-install-conky-manager%23new-answer', 'question_page');
);
Post as a guest
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
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
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