Screenlets malfunction after upgrading to 18.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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 |
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 '18 at 6:49
add a comment |
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 '18 at 20:18
Kewal ShahKewal Shah
487320
487320
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 '18 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 '18 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 '18 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 '18 at 6:49
add a comment |
1 Answer
1
active
oldest
votes
bash script to install screenlets in 18.04.x x64 Bionic
Note: Only for clean installation. Not tested on upgrades from previous versions to 18.04
To Run (without sudo):
~$ chmod +x ./screenlets.sh && ./screenlets.sh
Content of script:
#!/bin/bash
echo "Screenlets Setup. Wait..."
function screenlets(){
clear
sudo rm -rf /etc/apt/sources.list.d/screenlets*
# Dependencies
sudo apt -y install software-properties-common
sudo dpkg -l python-wnck
if [ $? == 0 ]; then
echo "OK"
else
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
if [ $? == 0 ]; then
echo "OK"
else
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
# Screenlets Setup
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
sudo rm -rf /etc/apt/sources.list.d/screenlets*
}
screenlets &> /dev/null
echo "Done"
To remove:
sudo apt -y purge python-wnck python-gnomekeyring libwnck22 screenlets screenlets-pack-all && sudo apt -y autoremove && sudo rm -rf /etc/apt/sources.list.d/screenlets* ~/.config/autostart/screenlets-daemon.desktop
source: maravento
Works well! +1 =)
– Terrance
Aug 20 '18 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 '18 at 2:35
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
add a comment |
protected by Community♦ Jul 26 '18 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
bash script to install screenlets in 18.04.x x64 Bionic
Note: Only for clean installation. Not tested on upgrades from previous versions to 18.04
To Run (without sudo):
~$ chmod +x ./screenlets.sh && ./screenlets.sh
Content of script:
#!/bin/bash
echo "Screenlets Setup. Wait..."
function screenlets(){
clear
sudo rm -rf /etc/apt/sources.list.d/screenlets*
# Dependencies
sudo apt -y install software-properties-common
sudo dpkg -l python-wnck
if [ $? == 0 ]; then
echo "OK"
else
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
if [ $? == 0 ]; then
echo "OK"
else
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
# Screenlets Setup
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
sudo rm -rf /etc/apt/sources.list.d/screenlets*
}
screenlets &> /dev/null
echo "Done"
To remove:
sudo apt -y purge python-wnck python-gnomekeyring libwnck22 screenlets screenlets-pack-all && sudo apt -y autoremove && sudo rm -rf /etc/apt/sources.list.d/screenlets* ~/.config/autostart/screenlets-daemon.desktop
source: maravento
Works well! +1 =)
– Terrance
Aug 20 '18 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 '18 at 2:35
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
add a comment |
bash script to install screenlets in 18.04.x x64 Bionic
Note: Only for clean installation. Not tested on upgrades from previous versions to 18.04
To Run (without sudo):
~$ chmod +x ./screenlets.sh && ./screenlets.sh
Content of script:
#!/bin/bash
echo "Screenlets Setup. Wait..."
function screenlets(){
clear
sudo rm -rf /etc/apt/sources.list.d/screenlets*
# Dependencies
sudo apt -y install software-properties-common
sudo dpkg -l python-wnck
if [ $? == 0 ]; then
echo "OK"
else
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
if [ $? == 0 ]; then
echo "OK"
else
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
# Screenlets Setup
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
sudo rm -rf /etc/apt/sources.list.d/screenlets*
}
screenlets &> /dev/null
echo "Done"
To remove:
sudo apt -y purge python-wnck python-gnomekeyring libwnck22 screenlets screenlets-pack-all && sudo apt -y autoremove && sudo rm -rf /etc/apt/sources.list.d/screenlets* ~/.config/autostart/screenlets-daemon.desktop
source: maravento
Works well! +1 =)
– Terrance
Aug 20 '18 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 '18 at 2:35
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
add a comment |
bash script to install screenlets in 18.04.x x64 Bionic
Note: Only for clean installation. Not tested on upgrades from previous versions to 18.04
To Run (without sudo):
~$ chmod +x ./screenlets.sh && ./screenlets.sh
Content of script:
#!/bin/bash
echo "Screenlets Setup. Wait..."
function screenlets(){
clear
sudo rm -rf /etc/apt/sources.list.d/screenlets*
# Dependencies
sudo apt -y install software-properties-common
sudo dpkg -l python-wnck
if [ $? == 0 ]; then
echo "OK"
else
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
if [ $? == 0 ]; then
echo "OK"
else
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
# Screenlets Setup
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
sudo rm -rf /etc/apt/sources.list.d/screenlets*
}
screenlets &> /dev/null
echo "Done"
To remove:
sudo apt -y purge python-wnck python-gnomekeyring libwnck22 screenlets screenlets-pack-all && sudo apt -y autoremove && sudo rm -rf /etc/apt/sources.list.d/screenlets* ~/.config/autostart/screenlets-daemon.desktop
source: maravento
bash script to install screenlets in 18.04.x x64 Bionic
Note: Only for clean installation. Not tested on upgrades from previous versions to 18.04
To Run (without sudo):
~$ chmod +x ./screenlets.sh && ./screenlets.sh
Content of script:
#!/bin/bash
echo "Screenlets Setup. Wait..."
function screenlets(){
clear
sudo rm -rf /etc/apt/sources.list.d/screenlets*
# Dependencies
sudo apt -y install software-properties-common
sudo dpkg -l python-wnck
if [ $? == 0 ]; then
echo "OK"
else
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
if [ $? == 0 ]; then
echo "OK"
else
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
# Screenlets Setup
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
sudo rm -rf /etc/apt/sources.list.d/screenlets*
}
screenlets &> /dev/null
echo "Done"
To remove:
sudo apt -y purge python-wnck python-gnomekeyring libwnck22 screenlets screenlets-pack-all && sudo apt -y autoremove && sudo rm -rf /etc/apt/sources.list.d/screenlets* ~/.config/autostart/screenlets-daemon.desktop
source: maravento
edited yesterday
answered Jul 17 '18 at 0:06
ajcgajcg
788411
788411
Works well! +1 =)
– Terrance
Aug 20 '18 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 '18 at 2:35
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
add a comment |
Works well! +1 =)
– Terrance
Aug 20 '18 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 '18 at 2:35
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
Works well! +1 =)
– Terrance
Aug 20 '18 at 21:47
Works well! +1 =)
– Terrance
Aug 20 '18 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 '18 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 '18 at 2:35
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
@KewalShah The problem that you mention of "Calender" I think is not related to the installation of screenlets. Maybe with your video driver. Something similar happens with virtualbox. See askubuntu.com/questions/1088850/…
– ajcg
Apr 2 at 13:37
add a comment |
protected by Community♦ Jul 26 '18 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 '18 at 6:49