kwin-scripts / kwin-tiling

Tiling script for kwin
GNU General Public License v2.0
1.1k stars 68 forks source link

Thunderbird reply window #221

Closed fabianski7 closed 4 years ago

fabianski7 commented 4 years ago

Is there any way to disable the script for thunderbird's compose email window? As I understand it, TB runs a single process, so putting the thunderbird class on the exclude list would exclude the whole client.

laloch commented 4 years ago

Hi @fabianski7, unless xprop | grep WM_CLASS shows different string for the composer window from the main window, there's, i think, nothing we can do about it right now, since we only match according to the WM_CLASS.

fabianski7 commented 4 years ago

it seems that there are two classes.

$ xprop | grep WM_CLASS
WM_CLASS(STRING) = "Msgcompose", "Thunderbird"

I tried Msgcompose and Msgcompose Thunderbird, none of the options worked

laloch commented 4 years ago

@fabianski7, does #222 solve the issue for you?

Match against "Msgcompose" should now succeed.

fabianski7 commented 4 years ago

that solves the problem. thanks!