Re: doc and or examples for obvious

2011-10-25 Thread Rainux Luo
#x27;m continously doing stupid syntax errors in lua ;D >> >> >> > > two weeks, no response, no further ideas? Isn't there really anyone > using this? I can't debug something which doesnt write any error on > stdout/stderr. > > Thorsten > > > -- > To unsubscribe, send mail to awesome-unsubscr...@naquadah.org. > -- Rainux Luo -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: doc and or examples for obvious

2011-10-25 Thread Rainux Luo
t; Nope, no output in both systems. I always have a xterm open with tail >> -f $log, because I'm continously doing stupid syntax errors in lua ;D >> >> >> > > two weeks, no response, no further ideas? Isn't there really anyone > using this? I can't de

Re: Set opacity on a client fails when the client is fading

2011-10-23 Thread Rainux Luo
t() > end) > fading_timer:add_signal("timeout", function() >    client.focus.opacity = 0.9 >    fading_timer:stop() > end) > client.add_signal('unfocus', function(c) >    c.opacity = 0.5 > end) > > Adjust timeout for your needs. > > -- > To unsub

Set opacity on a client fails when the client is fading

2011-10-17 Thread Rainux Luo
Hello, I'm trying to configure window transparent this way: client.add_signal('focus', function(c) c.border_color = beautiful.border_focus c.opacity = 0.9 end) client.add_signal('unfocus', function(c) c.border_color = beautiful.border_normal c.opacity = 0.5 end) awful.util.spawn