https://bugs.kde.org/show_bug.cgi?id=399491
--- Comment #6 from Alex Nemeth <alex19930...@gmail.com> --- (In reply to alexkde from comment #5) > > what if you enable the blur behind konsole checkbox? > > This one is new to me, I have overlooked it the whole time. This indeed > resolves the issue. > > The now ensuing question is, why is the background blurred in the first > place, if this checkbox, which controls Konsole's background transparency, > is not checked by default. > > This is obviously just confusing and IMHO not the correct behavior either. check your ~/.bashrc file did you add something like this to it: if [[ $(ps --no-header -p $PPID -o comm) =~ yakuake|konsole ]]; then for wid in $(xdotool search --pid $PPID); do xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $wid; done fi this is how it was done in the old days -- You are receiving this mail because: You are watching all bug changes.