https://bugs.kde.org/show_bug.cgi?id=370899
Lim Yuen Hoe <yuenho...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yuenho...@gmail.com --- Comment #4 from Lim Yuen Hoe <yuenho...@gmail.com> --- > 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 I am the author of this script. The problem is that xprop is only able to select windows by either window name or window id, and not class. However, it's possible to workaround by using xdotool. Instead of -name Yakuake in the xprop command, use -id `xdotool search --class yakuake` instead: xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id `xdotool search --class yakuake`; -- You are receiving this mail because: You are watching all bug changes.