Man won't uby gas for at least 31 days

2009-05-25 Thread Luxon
emulsionize.jpg

Re: Problem with 3.3-rc3 and functions using ... and arg

2009-05-25 Thread Julien Danjou
At 1243188456 time_t, Tassilo Horn wrote: Ah, now I've looked that up in the lua spec. In 5.0 `arg' is used to access varargs, but in 5.1 `...' is used instead. Because awesome uses so many bleeding edge libs anyway, I'd say that one could switch to using lua 5.1 syntax... Thanks, that

Re: next branch keybinding weirdness

2009-05-25 Thread Julien Danjou
At 1243147563 time_t, koniu wrote: My best conclusion so far is that when re-setting root.keys with different length tables (note that I still run root.keys({ ... }) even when switching A1-A2 and it works fine) something goes wrong and the keybinding/function is done twice. The thing is that

Re: [PATCH] 0001-hooks-add-exit-hook

2009-05-25 Thread Julien Danjou
At 1243184445 time_t, Gregor Best wrote: You wouldn't need such a hook. Just append all stuff which needs to be started to the end of your rc.lua Except that it's not very easy to use when you just want to add that code in a module. You can't access rc.lua and telling user to add code ia PITA.

Re: Problem with 3.3-rc3 and functions using ... and arg

2009-05-25 Thread Julien Danjou
At 1243245445 time_t, Tassilo Horn wrote: In the meantime I've discovered that lua 5.1.4 allows to use those deprecated features by default, but my distro (Gentoo) disables them if the deprecated USE flag is not set. This explains why nobody except me complained till now. So for now I

Re: [PATCH] 0001-hooks-add-exit-hook

2009-05-25 Thread Julien Danjou
At 1243177021 time_t, koniu wrote: and the patch :P Pushed. -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD // Ferns will rule the world. signature.asc Description: Digital signature

Re: [Patches] Fix some minor compiler warnings found in rc3

2009-05-25 Thread Julien Danjou
At 1243166412 time_t, Uli Schlachter wrote: gogonkt reported some compiler warnings in #awesome with gentoo's gcc 4.2.4 (And he also had an error trying to build the docs, but no idea about that one. Merged. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info //

Los Angeles open-air reservoir covered with plastic balls to protect wataer

2009-05-25 Thread Betzer
bench.jpg

Re: next branch keybinding weirdness

2009-05-25 Thread Gregor Best
At Mon, 25 May 2009 11:42:37 +0200 Julien Danjou wrote: At 1243147563 time_t, koniu wrote: My best conclusion so far is that when re-setting root.keys with different length tables (note that I still run root.keys({ ... }) even when switching A1-A2 and it works fine) something goes wrong

Re: [PATCH] 0001-hooks-add-exit-hook

2009-05-25 Thread Gregor Best
At Mon, 25 May 2009 11:44:25 +0200 Julien Danjou wrote: At 1243184445 time_t, Gregor Best wrote: You wouldn't need such a hook. Just append all stuff which needs to be started to the end of your rc.lua Except that it's not very easy to use when you just want to add that code in a module.

Re: Problem with 3.3-rc3 and functions using ... and arg

2009-05-25 Thread Tassilo Horn
Julien Danjou jul...@danjou.info writes: Hi Julien, Ah, now I've looked that up in the lua spec. In 5.0 `arg' is used to access varargs, but in 5.1 `...' is used instead. Because awesome uses so many bleeding edge libs anyway, I'd say that one could switch to using lua 5.1 syntax...

Re: [Patch] simplewindow / wibox stuff (nothing major ;)

2009-05-25 Thread Julien Danjou
At 1243258659 time_t, Uli Schlachter wrote: this is v2 of Re: [Patch] Allow setting wibox.opacity if wibox.screen is nil which I sent some time ago (or rather: this is completly unrelated to that other patch, but also fixes that bug). There is also some other stuff in there, but everything

Re: c.hide broken in next

2009-05-25 Thread Julien Danjou
At 1243264813 time_t, koniu wrote: jd_, u mess with all those properties :) Did I? :) I've amended the commit responsible of that. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD // Life is life. Lalalalala.

Re: next branch keybinding weirdness

2009-05-25 Thread Julien Danjou
At 1243268501 time_t, koniu wrote: This can be tested/reproduced by adding this to default rc's awful.hooks.tags function: if view == select root.keys(globalkeys) end This is not a major issue but makes me think that there could be some improvement to be made in the way

focus problem in next

2009-05-25 Thread koniu
Hello, here's me complaining about next again :P The issue, in general terms, seems to be sloppy focus somehow taking precedence over manage focus. Here's the steps: 1. go to an empty tag (tile layout) 2. open a terminal 3. type something (eg. 111) in, so you know which client is which 4. open

Re: c.hide broken in next

2009-05-25 Thread koniu
On Mon, May 25, 2009 at 16:28, Julien Danjou jul...@danjou.info wrote: At 1243264813 time_t, koniu wrote: jd_, u mess with all those properties :) Did I? :) I've amended the commit responsible of that. Fixed, thanks. Can you do the same magic for c.minimized (same issue)? cheers kk -- To

Re: c.hide broken in next

2009-05-25 Thread Julien Danjou
At 1243272624 time_t, koniu wrote: Fixed, thanks. Can you do the same magic for c.minimized (same issue)? Should be ok. Cheers, -- Julien Danjou // ᐰ jul...@danjou.info http://julien.danjou.info // 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD // When I get sad, I stop being sad and be

[Patch] warning in setlocale()

2009-05-25 Thread Ángel Alonso
Shows a warning if the locale cannot be set. I attach the patch. NOTE: In Xlib you have a function called XSupportsLocale(), I didn't find anything similar in xcb.

Re: c.hide broken in next

2009-05-25 Thread koniu
On Mon, May 25, 2009 at 20:39, Julien Danjou jul...@danjou.info wrote: At 1243272624 time_t, koniu wrote: Fixed, thanks. Can you do the same magic for c.minimized (same issue)? Should be ok. Confirmed. Btw, build of current next (6c1d20) went kuku, see patch. From

tag history broken in next

2009-05-25 Thread koniu
With the new select/unselect events the history is always empty? I've attempted to hack a better tag history implementation which would be multi-level and allowed a variable number of tags. The problem I keep facing is that eg. each tag switch with viewonly() triggers a bunch of unselect's by