On 10/08/2012 12:14 PM, [email protected] wrote:
Hello all, I seek a way to show when windows is an top, I'm new in awesome and 
in lua programming and I don't know where work for make it.
tnx
d.

If I understand you correctly, by "on top" you mean "keyboard focus," and "show" means a onscreen visual cue -- try this in your theme file to put a green border around the focused window, it works well for me:

theme.border_width  = "3";
theme.border_normal = "gray";
theme.border_focus  = "green";

Or, if you don't want to have a personalized theme file, you _might_ be able to get away with this in your rc.lua, _after_ the call to beautiful.init().

beautiful.border_width  = "3";
beautiful.border_normal = "gray";
beautiful.border_focus  = "green";

-- David


--
To unsubscribe, send mail to [email protected].

Reply via email to