lcpz / lain

Awesome WM complements
GNU General Public License v2.0
1.06k stars 212 forks source link

util.quake:toggle() stopped working #537

Closed lpanebr closed 2 years ago

lpanebr commented 2 years ago

I think that the the comment I added to my previous issue https://github.com/lcpz/lain/issues/536#issuecomment-1215077039_ is really related to the Alacritty update.

On the following config the first three definitions work perfectly using st and PureRef for the app, but the last one, using alacritty does not work anymore.

local qVolume = lain.util.quake {
    app = "st",
    name = "Volume",
    argname = "-n Volume",
    extra = "-c Volume -e pulsemixer",
    height = 0.3,
    width = 1,
    followtag = true,
  }

local qQuickShell = lain.util.quake {
    app = "st",
    name = "QuickShell",
    argname = "-n QuickShell",
    extra = "-c QuickShell -e tmux",
    followtag = true,
    width = 0.5,
    height = 1,
  }

local qTextScratchpad = lain.util.quake {
    app = "PureRef",
    name = "PureRef",
    height = 0.5,
    followtag = true,
  }

local qDotFiles = lain.util.quake {
    app = "alacritty",
    name = "DotFiles",
    argname = "-t DotFiles",
    extra = "--class DotFiles",
    followtag = true,
    width = 0.5,
    height = 1,
  }

Below is the xprop of if:

image

Maybe it has something to do with it having two Classes?

I tried but could not change that.

Any idea?

lpanebr commented 2 years ago

After alacritty updated to version 0.10.1+1-20220826T02014 it started working again.