Kacper Pluta changed bug 959854
What Removed Added
Status RESOLVED REOPENED
CC   kacper.pluta@gmail.com
Version Leap 42.1 Leap 15.0
Resolution WONTFIX ---

Comment # 5 on bug 959854 from
Sorry for multiple comments. I have had a network issues.
Comment # 4 on bug 959854 from
This bug is also present in Leap 15. It is related to a bug in Plasma 5.
Basically the notification applet has an animation during file copying, etc.
The animation causes a high CPU load.

To fix this I propose to turn off the animation. It can be done by editing

/usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationIcon.qml 

and setting the running option to false

It should look like this

PlasmaComponents.BusyIndicator {
            anchors.fill: parent

            visible: jobs ? jobs.count > 0 : false
            running: false
        }


the solution comes from
https://www.linuxquestions.org/questions/linuxquestions-org-member-success-stories-23/plasmashell-high-cpu-load-fix-plasma-5-9x-kde-4175606972/

Note that it is not a real bug fix but it solve the issue for now. 

I strongly suggest for patching this at least in the way presented above
because it is a really annoying problem while working on a laptop.
Comment # 3 on bug 959854 from
This bug is also present in Leap 15. It is related to a bug in Plasma 5.
Basically the notification applet notification has an animation during file
copying, etc. The animation causes a high CPU load.

To fix this I propose to turn off the animation. It can be done by editing

/usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationIcon.qml 

and setting the running option false

It should look as this

PlasmaComponents.BusyIndicator {
            anchors.fill: parent

            visible: jobs ? jobs.count > 0 : false
            running: false
        }


the solution comes from
https://www.linuxquestions.org/questions/linuxquestions-org-member-success-stories-23/plasmashell-high-cpu-load-fix-plasma-5-9x-kde-4175606972/

Note that it is not a real bug fix but it solve the issue for now. 

I strongly suggest for patching this at least in the way presented above
because it is a really annoying problem while working on a laptop.
Comment # 2 on bug 959854 from
This bug is also present in Leap 15. It is related to a bug in Plasma 5.
Basically the notification applet notification has an animation during file
copying, etc. The animation causes a high CPU load.

To fix this I propose to turn off the animation. It can be done by editing

/usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationIcon.qml 

and setting the running option false

It should look as this

PlasmaComponents.BusyIndicator {
            anchors.fill: parent

            visible: jobs ? jobs.count > 0 : false
            running: false
        }


the solution comes from
https://www.linuxquestions.org/questions/linuxquestions-org-member-success-stories-23/plasmashell-high-cpu-load-fix-plasma-5-9x-kde-4175606972/

Note that it is not a real bug fix but it solve the issue for now. 

I strongly suggest for patching this at least in the way presented above
because it is a really annoying problem while working on a laptop.


You are receiving this mail because: