Re: set size for a window in rules

2011-04-08 Thread Adrian C.
On Sat, 9 Apr 2011, chris M. sprite wrote: > How to set a size ( length/width ) for a window or client In "rules" ? See the last rule: https://awesome.naquadah.org/wiki/FAQ#How_to_start_clients_on_specific_tags_and_others_as_floating.3F But in addition (or instead) of x, y set width and height i

set size for a window in rules

2011-04-08 Thread chris M. sprite
How to set a size ( length/width ) for a window or client In "rules" ? -- I try to detoxify my memory. Forget can not be treated as betray. It's not certainly a love even though you remember to the end of your life. -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

how to let widget has a flexible length

2011-04-08 Thread chris M. sprite
how to let widget's length is flexible , so that the mpd widget will not override other widget, because the mpd widget's length will change. belowing is a clip of my mpd widget: Thanks for your help in advance -- MPD widget mpdwidget = widget({ type = 'textbox' }) vicious.register(mpdw

Re: wibox bg_image

2011-04-08 Thread Uli Schlachter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 08.04.2011 17:13, The Sighter wrote: > i have found the table key bg_image in the api documention. > http://awesome.naquadah.org/doc/api/modules/wibox.html > > But if I use it, with something like this: > > sightbox[1] = awful.wibox({ posi

wibox bg_image

2011-04-08 Thread The Sighter
i have found the table key bg_image in the api documention. http://awesome.naquadah.org/doc/api/modules/wibox.html But if I use it, with something like this: sightbox[1] = awful.wibox({ position = "bottom", height = 32,

Re: Rules not working

2011-04-08 Thread Vitor Eiji Justus Sakaguti
2011/4/8 Patrick Börjesson : > Have you tried: > >{ rule = { class = "Firefox", instance = "Navigator" }, > properties = { maximized_horizontal = true, > maximized_vertical = true } }, And On Fri, Apr 8, 2011 at 4:43 AM, Vivian Brégier wrote: > The class

Re: Rules not working

2011-04-08 Thread Vivian Brégier
The class of the firefox window is not "Navigator", that’s its inrsance name… Try this : { rule = { instance = "Navigator", role = "browser" }, properties = { maximized_horizontal = true, maximized_vertical = true } }, 2011/4/8 Vitor Eiji Justus Sakaguti : > Hi, > >