At 1251881588 time_t, Javier Barroso wrote:
> So, reading your comment about libev3, should I open a debbug ?
Well, it should work correctly with 3.3.3, so if you still have this
issue, there might be something else wrong.
Can you reproduce the problem with the default configuration?
I'll try it. I tried it with other user and it seems like it works. Which config could have the cause?
Now I merged my config with the last rc.lua provided, my (significatives) changes were:
$ diff ~/.config/awesome/rc.lua.3.3.3-mio ~/.config/awesome/rc.lua
212c212
< mytaglist[s] = awful.widget.taglist.new(s, awful.widget.taglist.label.all, mytaglist.buttons)
---
> mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.label.all, mytaglist.buttons)
215,217c215,217
< mytasklist[s] = awful.widget.tasklist.new(function(c)
< return awful.widget.tasklist.label.currenttags(c, s)
< end, mytasklist.buttons)
---
> mytasklist[s] = awful.widget.tasklist(function(c)
> return awful.widget.tasklist.label.currenttags(c, s)
> end, mytasklist.buttons)
336c336,337
< table.foreach(awful.key({ modkey }, i,
---
> globalkeys = awful.util.table.join(globalkeys,
> awful.key({ modkey }, i,
342,343c343,344
< end), function(_, k) table.insert(globalkeys, k) end)
< table.foreach(awful.key({ modkey, "Control" }, i,
---
> end),
> awful.key({ modkey, "Control" }, i,
349,350c350,351
< end), function(_, k) table.insert(globalkeys, k) end)
< table.foreach(awful.key({ modkey, "Shift" }, i,
---
> end),
> awful.key({ modkey, "Shift" }, i,
355,356c356,357
< end), function(_, k) table.insert(globalkeys, k) end)
< table.foreach(awful.key({ modkey, "Control", "Shift" }, i,
---
> end),
> awful.key({ modkey, "Control", "Shift" }, i,
361,362c362,363
< end), function(_, k) table.insert(globalkeys, k) end)
< table.foreach(awful.key({ modkey, "Shift" }, "F" .. i,
---
> end),
> awful.key({ modkey, "Shift" }, "F" .. i,
370c371
< end), function(_, k) table.insert(globalkeys, k) end)
---
> end))
440c441
< elseif floatapps[inst] then
---
> elseif floatapps[inst] ~= nil then
I'm writting this because it if where possible these changes could fix the issue (I doubt it)
Regards,