Window position

2011-08-30 Thread Tomás Solar Castro
Hi everyone how can I change the window position when I open a program? I want to open it floating, but not in top left ( 0,0 ? ). And how can I set its size, in the same rule? Thanks! -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Awesome 3.4 and Xrandr issue

2011-08-30 Thread Piotr Adamus
Hello, I have following issue and I would like to ask you for a help. Physical configuration: -GFX card: Intel and Displaylink (both works) -Laptop LCD, and two external LCDs (one for DVI output of the laptop; another for Displaylink). The Displaylink forces me to set it screen 0 for Displaylin

Re: WM_CLASS rule matching

2011-08-30 Thread Marc Petit-Huguenin
On 08/29/2011 09:55 AM, Anurag Priyam wrote: > On Mon, Aug 29, 2011 at 10:06 PM, Daniel. wrote: >> >> When I do `xprop' then clink in some window I got two window classes. >> >> e.g: >> WM_CLASS(STRING) = "Msgcompose", "Thunderbird" >> >> I learn that I use this values on rules in my rc.lua. >> Bu

Re: Can naughty behavior like notify-osd?

2011-08-30 Thread Uli Schlachter
Am 29.08.2011 20:30, Daniel wrote: echo 'return naughty.notify({ text = "foo", timeout = 0 }).id' | awesome-client double 1551 echo 'return naughty.notify({ text = "foo2", timeout = 0, replaces_id = 1551 }).id' | awesome-client double 1552 and then I try echo 'return naughty.notify(

Re: Can naughty behavior like notify-osd?

2011-08-30 Thread Daniel
> Make wrapper function for naughty.notify: > > volnotify = {} > volnotify.id = nil > function volnotify:notify (msg) > self.id = naughty.notify({ text = msg, timeout = 0, replaces_id = self.id}).id > end > > and then > > $ echo 'volnotify:notify("message")' | a