Re: ontop for floating clients

2011-12-02 Thread Richard Heycock
Excerpts from Adam's message of 2011-12-02 08:01:06 +1100: Some applications, such as gimp. have windows that are floating by default. I would like to make those windows also ontop. Unfortunately when I add a callback rule, the floating property of the client is always nil.

Re: ontop for floating clients

2011-12-02 Thread Richard Heycock
Excerpts from Adam's message of 2011-12-02 08:01:06 +1100: Some applications, such as gimp. have windows that are floating by default. I would like to make those windows also ontop. Unfortunately when I add a callback rule, the floating property of the client is always nil.

Re: ontop for floating clients

2011-12-02 Thread Adam
= { floating = true } }, } See the FAQ for more details: http://awesome.naquadah.org/wiki/FAQ#How_to_start_clients_on_specific_tags_and_others_as_floating.3F I would like to make all floating clients ontop by default, not only gimp. IsN't there a generic solution for this? -- To unsubscribe

Re: ontop for floating clients

2011-12-02 Thread Juanma Sánchez
I would like to make all floating clients ontop by default, not only gimp. IsN't there a generic solution for this? I didn't test it, but I think that something like this should work: awful.rules.rules = { { rule = { floating = true }, properties = { ontop = true } }, } but the client

Re: ontop for floating clients

2011-12-02 Thread Tomás Solar Castro
El 02/12/11 07:00, Adam escribió: I would like to make all floating clients ontop by default, not only gimp. IsN't there a generic solution for this? did you try this? awful.rules.rules = { -- All clients will match this rule. { rule = { }, properties = { border_width

Re: ontop for floating clients

2011-12-02 Thread 成実Musee
On Dec 2, 2011 6:43 AM, Tomás Solar Castro tso...@lavabit.com wrote: did you try this? awful.rules.rules = { -- All clients will match this rule. { rule = { }, properties = { border_width = beautiful.border_width, border_color = beautiful.border_normal,

Re: ontop for floating clients

2011-12-02 Thread Adam
成実Musee icelandisbeingcolouredbywr...@gmail.com writes: On Dec 2, 2011 6:43 AM, Tomás Solar Castro tso...@lavabit.com wrote: did you try this? awful.rules.rules = { -- All clients will match this rule. { rule = { }, properties = { border_width = beautiful.border_width,

Re: ontop for floating clients

2011-12-02 Thread Matthew Hague
I believe he wants it to actually be conditional - as in, not set all clients to floating when created, but to make the client ontop IF it is floating. a exactly! You have to use a custom function. Try this instead of awful.client.floating.toggle in your keybindings: function

Re: ontop for floating clients

2011-12-02 Thread Adam
Matthew Hague matthewha...@zoho.com writes: Ah -- i can't test on 3.4.11 unfortunately, but this solution differs from your original message, which was: client.add_signal( property::floating, function(c) c.ontop=c.floating end ) I'm not sure where

ontop for floating clients

2011-12-01 Thread Adam
Some applications, such as gimp. have windows that are floating by default. I would like to make those windows also ontop. Unfortunately when I add a callback rule, the floating property of the client is always nil. client.add_signal( property::floating, function(c)

Re: ontop for floating clients

2011-12-01 Thread Daniel Martí
I would like to know the answer to his question as well. Thanks for your time. -Daniel Adam adam_...@yahoo.com wrote: Some applications, such as gimp. have windows that are floating by default. I would like to make those windows also ontop. Unfortunately when I add a callback rule, the