Closed lpanebr closed 1 year ago
My problem was that rofi only shows windows that appear on the taskbar what by default does not happen with quake windows. (see the _NET_WM_STATE_SKIP_TASKBAR in xprop
output).
I've read the documentation and code again and found that the settings
attribute let's me do this:
local qQuickShell = lain.util.quake({
app = "wezterm",
name = "QuickShell",
argname = "",
extra = "start --class 'QuickShell'",
followtag = true,
width = 0.5,
height = 1,
border = 2,
settings = function(c)
c.skip_taskbar = false
end,
})
rofi has a window switcher run with
rofi -show window
.I noticed that windows spawned with the
quake
util are not show with therofi
command.Below are the
xprop
of both.Any ideas of how to get quake clients to show?
Thanks!
Quake client:
Regular client:
output of
awesome -v
andlua -v