Screenlets malfunction after upgrading to 18.04
up vote
1
down vote
favorite
Everything in the screenlets worked fine in my Ubuntu 17.10
However after upgrading to 18.04 not only do some screenlets (like the clock) appear to be a lot blurred than before but I cannot move any of the screenlets manually by clicking and dragging my mouse.
Is it because I accidentally removed one of the many libraries which the Software Updater suggested me were no longer needed during the distribution upgrade or is it some problem with the display of 18.04 and its compatibility with the screenlets app?
In any case is there a solution? Because I really want to be able to use a functional clock screenlet in 18.04.
gnome 18.04 screenlets
add a comment |
up vote
1
down vote
favorite
Everything in the screenlets worked fine in my Ubuntu 17.10
However after upgrading to 18.04 not only do some screenlets (like the clock) appear to be a lot blurred than before but I cannot move any of the screenlets manually by clicking and dragging my mouse.
Is it because I accidentally removed one of the many libraries which the Software Updater suggested me were no longer needed during the distribution upgrade or is it some problem with the display of 18.04 and its compatibility with the screenlets app?
In any case is there a solution? Because I really want to be able to use a functional clock screenlet in 18.04.
gnome 18.04 screenlets
I was just searching for screenlets in ubuntu 18.04 but got none. It says that screenlets for ubuntu 18.04 doesn't exit.
– Vishal B.
Jul 11 at 6:49
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Everything in the screenlets worked fine in my Ubuntu 17.10
However after upgrading to 18.04 not only do some screenlets (like the clock) appear to be a lot blurred than before but I cannot move any of the screenlets manually by clicking and dragging my mouse.
Is it because I accidentally removed one of the many libraries which the Software Updater suggested me were no longer needed during the distribution upgrade or is it some problem with the display of 18.04 and its compatibility with the screenlets app?
In any case is there a solution? Because I really want to be able to use a functional clock screenlet in 18.04.
gnome 18.04 screenlets
Everything in the screenlets worked fine in my Ubuntu 17.10
However after upgrading to 18.04 not only do some screenlets (like the clock) appear to be a lot blurred than before but I cannot move any of the screenlets manually by clicking and dragging my mouse.
Is it because I accidentally removed one of the many libraries which the Software Updater suggested me were no longer needed during the distribution upgrade or is it some problem with the display of 18.04 and its compatibility with the screenlets app?
In any case is there a solution? Because I really want to be able to use a functional clock screenlet in 18.04.
gnome 18.04 screenlets
gnome 18.04 screenlets
asked May 16 at 20:18
Kewal Shah
424318
424318
I was just searching for screenlets in ubuntu 18.04 but got none. It says that screenlets for ubuntu 18.04 doesn't exit.
– Vishal B.
Jul 11 at 6:49
add a comment |
I was just searching for screenlets in ubuntu 18.04 but got none. It says that screenlets for ubuntu 18.04 doesn't exit.
– Vishal B.
Jul 11 at 6:49
I was just searching for screenlets in ubuntu 18.04 but got none. It says that screenlets for ubuntu 18.04 doesn't exit.
– Vishal B.
Jul 11 at 6:49
I was just searching for screenlets in ubuntu 18.04 but got none. It says that screenlets for ubuntu 18.04 doesn't exit.
– Vishal B.
Jul 11 at 6:49
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
bash to install screenlets in bionic (For clean installation. Not tested on upgrades from previous versions to 18.04. Run ./script.sh without "sudo"):
#!/bin/bash
sudo dpkg -l python-wnck >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-wnck"
sudo apt -y install libwnck22
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-gnomekeyring"
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo add-apt-repository -y ppa:screenlets/ppa
sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sudo apt update && sudo apt -y install screenlets screenlets-pack-all
source: maravento
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
add a comment |
protected by Community♦ Jul 26 at 15:24
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
bash to install screenlets in bionic (For clean installation. Not tested on upgrades from previous versions to 18.04. Run ./script.sh without "sudo"):
#!/bin/bash
sudo dpkg -l python-wnck >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-wnck"
sudo apt -y install libwnck22
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-gnomekeyring"
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo add-apt-repository -y ppa:screenlets/ppa
sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sudo apt update && sudo apt -y install screenlets screenlets-pack-all
source: maravento
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
add a comment |
up vote
2
down vote
bash to install screenlets in bionic (For clean installation. Not tested on upgrades from previous versions to 18.04. Run ./script.sh without "sudo"):
#!/bin/bash
sudo dpkg -l python-wnck >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-wnck"
sudo apt -y install libwnck22
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-gnomekeyring"
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo add-apt-repository -y ppa:screenlets/ppa
sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sudo apt update && sudo apt -y install screenlets screenlets-pack-all
source: maravento
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
add a comment |
up vote
2
down vote
up vote
2
down vote
bash to install screenlets in bionic (For clean installation. Not tested on upgrades from previous versions to 18.04. Run ./script.sh without "sudo"):
#!/bin/bash
sudo dpkg -l python-wnck >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-wnck"
sudo apt -y install libwnck22
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-gnomekeyring"
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo add-apt-repository -y ppa:screenlets/ppa
sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sudo apt update && sudo apt -y install screenlets screenlets-pack-all
source: maravento
bash to install screenlets in bionic (For clean installation. Not tested on upgrades from previous versions to 18.04. Run ./script.sh without "sudo"):
#!/bin/bash
sudo dpkg -l python-wnck >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-wnck"
sudo apt -y install libwnck22
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-wnck_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo dpkg -l python-gnomekeyring >/dev/null 2>&1
if [ $? == 0 ]; then
echo "OK"
else
echo "Install python-gnomekeyring"
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo dpkg -i python-gnomekeyring_2.32.0+dfsg-4_amd64.deb
sudo apt --fix-broken -y install
fi
sudo add-apt-repository -y ppa:screenlets/ppa
sudo sed -i 's/bionic/xenial/g' /etc/apt/sources.list.d/screenlets-ubuntu-ppa-bionic.list
sudo apt update && sudo apt -y install screenlets screenlets-pack-all
source: maravento
edited Dec 6 at 14:47
answered Jul 17 at 0:06
ajcg
549411
549411
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
add a comment |
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Works well! +1 =)
– Terrance
Aug 20 at 21:47
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
Thanks for sharing this script! While this solution does install screenlets, my question is not about installation. It is about the way they behave in 18.04 compared to previous Ubuntu versions. the ClearCalender screenlet for example does not move when I hold and drag the mouse, I've mentioned other examples in my question.
– Kewal Shah
Sep 6 at 2:35
add a comment |
protected by Community♦ Jul 26 at 15:24
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
I was just searching for screenlets in ubuntu 18.04 but got none. It says that screenlets for ubuntu 18.04 doesn't exit.
– Vishal B.
Jul 11 at 6:49