I have a problem with tiling applications in awesome-wm.
I set up some key biners in the rc.lua:
awful.key({ modkey, "Control" }, "f", function () awful.util.spawn("firefox") end,
{description = "firefox", group = "client"}),
awful.key({ modkey, "Control" }, "z", function () awful.util.spawn("/opt/zotero/./zotero") end,
{description = "zotero", group = "applications"}),
If I start the application with the key binding, it does not tile in tiling mode.
However, if I start it from the run menu, it tiles perfectly
Are there any specifications I have to include in the awful.util.spawn instruction to allow tiling?
I also tried to use awful.spawn instead of awful.util.spawn, but it behaves at the same way.