https://bugs.kde.org/show_bug.cgi?id=370899
Bug ID: 370899 Summary: WM_NAME(STRING) is empty - Unable to apply transparency blur Product: yakuake Version: 3.0.2 Platform: Other OS: Linux Status: UNCONFIRMED Severity: minor Priority: NOR Component: general Assignee: h...@kde.org Reporter: geniusikno...@gmail.com The WM_NAME(STRING) property is empty for Yakuake 3.0.2. In Yakuake 2.9.9, this string contains the value "Yakuake". With v2.9.9, I am able to use xprop in my bashrc file to get the name of the window and apply a transparency blur to it. As of v3.0.2, I am unable to do this. The code I am using is below: konsolex=$(qdbus | grep konsole | cut -f 2 -d\ ) if [ -n konsolex ]; then for konsole in $konsolex do for (( c=1; ; c++ )) do konsolewindows=$(qdbus org.kde.konsole | grep MainWindow_$c ) if [ -n "$konsolewindows" ]; then xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id `qdbus $konsole /konsole/MainWindow_$c winId`; else break; fi done done fi if [ `qdbus | grep yakuake` ]; then xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -name Yakuake; fi -- You are receiving this mail because: You are watching all bug changes.