applet-window-buttons icon indicating copy to clipboard operation
applet-window-buttons copied to clipboard

Buttons not getting displayed after 5.27 update

Open Sriramgireesh opened this issue 2 years ago • 21 comments

image

This is the error that is getting displayed.

Sriramgireesh avatar Feb 17 '23 07:02 Sriramgireesh

I have the same situation

zbor-li avatar Feb 17 '23 07:02 zbor-li

Reporting in to say this is broken for me too; I got no error message but maximised windows no longer have buttons.

FuzzyQuils avatar Feb 17 '23 14:02 FuzzyQuils

Guys, stop commenting like this. It only results in a #metoo +1 thread. Just give thumbs up to the first message from @Sriramgireesh .

sarvasana avatar Feb 17 '23 14:02 sarvasana

~~I have a bit hacky workaround run ldconfig -p | grep "kdecoration" this will give you path to the libraries then cp those files to the directory where is the library missing (in your case it is /usr/lib/x86_64-linux-gnu/qt5/qml/org/kde/appletdecoration, the appletdecoration directory might not exist then just create it) this will fix it after restarting your dock (what I guess happened is that with the new update those libraries got moved around so you can temporarly cp them to their old location)~~

Note: this is very suboptimal and temporary solution

Kiryume avatar Feb 17 '23 18:02 Kiryume

on arch, i also had to make a "libkdecorations2private.so.9" in /usr/bin (/usr/.../kde/appletdecoration did not work)

toboggan7 avatar Feb 17 '23 23:02 toboggan7

cp /usr/lib/libkdecorations2private.so.10 /usr/lib/libkdecorations2private.so.9 fix on archlinux

foxmaid avatar Feb 18 '23 05:02 foxmaid

on fedora, applet-window-buttons got removed during the update of plasma-desktop. And installing the applet requires downgrading plasma and several other packages. 2023-02-18_20-45

Xeo23 avatar Feb 18 '23 15:02 Xeo23

Maybe we should see if #191 fixes this.

sarvasana avatar Feb 19 '23 05:02 sarvasana

Fix on my Fedora 37 KDE Plasma 5.27.0 (Wayland):

cp /usr/lib64/libkdecorations2private.so.10 /usr/lib64/libkdecorations2private.so.9

mekta03 avatar Feb 19 '23 07:02 mekta03

This solved it for me, as expected: ;-) Go to https://github.com/chermnyx/applet-window-buttons/tree/dumb_5.27_support, and build using this "fork".

Sadi58 avatar Feb 19 '23 10:02 Sadi58

for those using arch linux the aur package has been updated using this commit #191 , we need to wait until it gets merged to be available in the main branch.

artfox3 avatar Feb 21 '23 00:02 artfox3

I've tried the steps mentioned above, but nothing worked for me.

See the screenshot: Screenshot_20230421_164451

Tapping on the widget does nothing.

Kubuntu 23.04 Plasma 5.27.4 Graphics Platform X11

This issue started after upgrading to Kubuntu 23.04 from 22.10

ayandebnath avatar Apr 21 '23 11:04 ayandebnath

The buttons are duplicated when I expand the window, as shown in the screenshot. Where should I focus my attention? What could be causing this issue? buttons

system

DrevniyMagistr avatar Apr 21 '23 15:04 DrevniyMagistr

The buttons are duplicated when I expand the window, as shown in the screenshot. Where should I focus my attention? What could be causing this issue? buttons

system

Open ~/.config/kwinrc

And add this

[Windows]
BorderlessMaximizedWindows=true

Then save and restart plasma or reboot.

ayandebnath avatar Apr 22 '23 09:04 ayandebnath

The buttons are duplicated when I expand the window, as shown in the screenshot. Where should I focus my attention? What could be causing this issue? buttons system

Open ~/.config/kwinrc

And add this

[Windows]
BorderlessMaximizedWindows=true

Then save and restart plasma or reboot.

Thank you!

DrevniyMagistr avatar Apr 22 '23 09:04 DrevniyMagistr

On Kubuntu 23.04 slightly different location for the fix. Works fine now after breaking when I upgraded from 22.10 to 23.04 (X11).

cp /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.10 /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.9

CaviaPorcellus avatar Apr 24 '23 23:04 CaviaPorcellus

On Kubuntu 23.04 slightly different location for the fix. Works fine now after breaking when I upgraded from 22.10 to 23.04 (X11).

cp /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.10 /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.9

Better to symbolically link it not to copy it example: sudo ln -s /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.10 /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.9

tamer-hassan avatar Apr 25 '23 02:04 tamer-hassan

On Kubuntu 23.04 slightly different location for the fix. Works fine now after breaking when I upgraded from 22.10 to 23.04 (X11).

cp /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.10 /usr/lib/x86_64-linux-gnu/libkdecorations2private.so.9

Thank you, works for me! I have my Window Buttons back!

Katana97 avatar Apr 28 '23 21:04 Katana97

I am having the same issue with KDE Neon 5.27, none of these solutions worked. I also see that i have a different error than the on from the top: image

Sweeistaken avatar Apr 30 '23 19:04 Sweeistaken

@Sweeistaken I currently run KDE neon, I was able to build it just fine using the 5.27 dumb support branch:

sudo apt install make cmake g++ extra-cmake-modules qtbase5-dev qtdeclarative5-dev libkf5declarative-dev libkf5plasma-dev libkdecorations2-dev gettext 
git clone --branch dumb_5.27_support https://github.com/chermnyx/applet-window-buttons && cd ${${_%%.git*}##*/} 
sh ./install.sh

(Fedora now have this widget as applet-window-buttons and it works just fine for me on my ublue-os image)

bayazidbh avatar May 02 '23 08:05 bayazidbh

I am having the same issue with KDE Neon 5.27, none of these solutions worked. I also see that i have a different error than the on from the top: image

In my case, the path KDE_INSTALL_QMLDIR was specified incorrectly. The compiled appletdecoration module was installed in the wrong place. It helped me to check where the QT QML modules are in my system and move appletdecoration there.

Screenshot_20230824_214059

palarky avatar Aug 24 '23 10:08 palarky