Re: Building in cygwin

2010-12-17 Thread Nate Anderson
Ok I do see a problem with oopango. make install tries to symlink to oopango.so. https://gist.github.com/745687 line 44 (ln -s /usr/local/lib/liboopango.so /usr/local/lib/lua/5.1/oopango.so) but I think cygwin doesn't do .so files and /usr/local/lib/lua/5.1/oopango.so does not exist. Could th

Re: Running on cygwin?

2010-12-17 Thread Nate Anderson
the errors are here https://gist.github.com/745514 I accidentally started another thread, sorry. See http://www.mail-archive.com/awesome@naquadah.org/msg03541.html On Fri, Dec 17, 2010 at 12:27 PM, Kristofer M White wrote: > On 12/16/2010 05:23 PM, Nate Anderson wrote: >> Has anyone successfu

Re: Running on cygwin?

2010-12-17 Thread Kristofer M White
On 12/16/2010 05:23 PM, Nate Anderson wrote: > Has anyone successfully compiled and run awesome on cygwin/x? I have > been trying to get it to compile for the last day or so with no luck. > > Nate What kind of errors are you seeing? I've never tried (lack a windows box), but it'd probably help wi

Re: Building in cygwin

2010-12-17 Thread Uli Schlachter
Am 17.12.2010 20:22, Nate Anderson wrote: > I am trying to build awesome under cygwin. Has anyone had success doing > this? I am trying the master git branch > 7008d9

Building in cygwin

2010-12-17 Thread Nate Anderson
I am trying to build awesome under cygwin. Has anyone had success doing this? I am trying the master git branch 7008d9. When I run make I get the errors shown at t

Re: non-resizing tiling? all clients same size as master

2010-12-17 Thread Klaus Umbach
On 15.12.10 00:01, Daniel wrote: > > I tried out different terminal emulators, and found out that urxvt is a > little bit better at keeping its window contents, even if it is resized > to become rather small. It has some flaws but its better than xterm. urxvt is the terminal that causes the least

Re: Mouse enter yes, but is mouse still over?

2010-12-17 Thread Julien Danjou
On Fri, Dec 17 2010, Daniel wrote: > Now, I don't re-new the timer object, but just start and stop it as > needed. It seems that between restarts, the timer remembers how much it > had counted so far. It this intentional, and should I thus re-new the > timer object every time? Yes, it is. See lib

Re: Mouse enter yes, but is mouse still over?

2010-12-17 Thread Daniel
Julien Danjou danjou.info> writes: > You can set a variable in mouse::enter, reset it in mouse::leave. > And just run a timer to check that variable. > > Sounds good? Yes, thanks for the hint, five minute job after that. And then I found tooltip module, but I think I needed this anyhow. I made

Re: Mouse enter yes, but is mouse still over?

2010-12-17 Thread Julien Danjou
On Fri, Dec 17 2010, Daniel wrote: > It is possible to get signal when mouse::enter, but is it possible to > check if the mouse IS over? For a less intrusive, delayed pop-up. > (signal->timeout->check->possible do stuff) You can set a variable in mouse::enter, reset it in mouse::leave. And just r

Mouse enter yes, but is mouse still over?

2010-12-17 Thread Daniel
It is possible to get signal when mouse::enter, but is it possible to check if the mouse IS over? For a less intrusive, delayed pop-up. (signal->timeout->check->possible do stuff) -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: idea about making awesome-client more flexible

2010-12-17 Thread Vivian Brégier
For your information, using "tr" instead of "xargs echo" should remove the string size limit, since the string isn't passed as argument : echo ' if something == anything then do_something end ' | tr '\n' ' ' | awesome-client 2010/12/16 Manner Robert : > -BEGIN PGP SIGNED MESSAGE- > Hash

Re: idea about making awesome-client more flexible

2010-12-17 Thread Manner Robert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/16/2010 11:56 AM, Julien Danjou wrote: > On Thu, Dec 16 2010, Julien Danjou wrote: > >> What's limited is how we use dbus-send in awesome-client. Because >> awesome-client is more a CLI than a `cat. >> But that's just a shell script limitation,