Duflot Jean-Luc | 1 Apr 2010 18:03
Favicon

Re: launch application in systray : open menu with mouse above, without clicking

Well, I received no answer to my question (:-(

Maybe it is so simple that I should find the solution by myself ; but if 
I am asking it, it's because I don't know how to get it...

May be my question is not clear. So I reformulate it :

I would like the awesome menu appears when the mouse cursor is above the 
menu widget (without clicking), and disappears when it moves away. How 
to combine the  " add_signal("mouse::enter", function () " with the 
awesome menu widget ?

Thanks for your answer !

Jean-Luc

Le 25/03/2010 11:58, Duflot Jean-Luc a écrit :
>
> I tried several things to display the awesome menu only when the mouse
> goes above its icon (without click on it), but no one works.
>
> I have two things working well :
>
> 1) a widget icon from where, if the mouse goes above, the apwal
> application is launched, which displays itself a set of application
> icons that I can click on to launch one of them :
>
> wmdrawericon = widget({ type = "imagebox" })
> wmdrawericon.image = image(beautiful.widget_drawer)
> wmdrawericon:add_signal("mouse::enter", function ()
(Continue reading)

Dayo Adewunmi | 1 Apr 2010 18:13
Picon

Awesome mailing list name for subject line

Hi guys

The mailing lists I'm subscribed to all have the list's name as a prefix
in the Subject line, e.g: "[Nagios-users] ...."

Would it be possible to configure that for the Awesome mailing list?
For example, something like "[Awesome WM]...." ?
What do you think?

Best regards

Dayo

Jeroen Op 't Eynde | 1 Apr 2010 18:22
Picon
Gravatar

Re: Awesome mailing list name for subject line

On Thu, 01 Apr 2010 18:13:54 +0200, Dayo Adewunmi <contactdayo <at> gmail.com>  
wrote:

> Hi guys
>
> The mailing lists I'm subscribed to all have the list's name as a prefix
> in the Subject line, e.g: "[Nagios-users] ...."
>
> Would it be possible to configure that for the Awesome mailing list?
> For example, something like "[Awesome WM]...." ?
> What do you think?
>
> Best regards
>
> Dayo
>

+1

I would like to see that too. It would be easier to find these messages  
between my other mails. The mails for awesome look more important than. ;-)

--

-- 
Jeroen Op 't Eynde
jeroen <at> xprsyrslf.be
http://xprsyrslf.be

Bottom-posting preserves the logical order of the replies and is  
consistent with the Western reading direction from top to bottom.  
(http://en.wikipedia.org/wiki/Posting_style#Bottom-posting)
(Continue reading)

Julien Danjou | 1 Apr 2010 18:36
Gravatar

Re: Awesome mailing list name for subject line

Dayo Adewunmi <contactdayo <at> gmail.com> writes:

> Would it be possible to configure that for the Awesome mailing list?
> For example, something like "[Awesome WM]...." ?
> What do you think?

It's not possible, and it's useless.

      http://liw.iki.fi/liw/log/2003-Enemies-of-Carlotta.html#2003113b

--

-- 
Julien Danjou
// ᐰ <julien <at> danjou.info>   http://julien.danjou.info
Duflot Jean-Luc | 1 Apr 2010 18:57
Favicon

Re: Awesome mailing list name for subject line

Le 01/04/2010 18:22, Jeroen Op 't Eynde a écrit :
>
> On Thu, 01 Apr 2010 18:13:54 +0200, Dayo Adewunmi
> <contactdayo <at> gmail.com> wrote:
>
>> Hi guys
>>
>> The mailing lists I'm subscribed to all have the list's name as a prefix
>> in the Subject line, e.g: "[Nagios-users] ...."
>>
>> Would it be possible to configure that for the Awesome mailing list?
>> For example, something like "[Awesome WM]...." ?
>> What do you think?
>>
>> Best regards
>>
>> Dayo
>>
>
>
> +1
>
> I would like to see that too. It would be easier to find these messages
> between my other mails. The mails for awesome look more important than. ;-)
>

Why not filter the awesome messages ? Easy too to find them ?

Jean-Luc

(Continue reading)

Evan McClain | 1 Apr 2010 19:32
Picon
Favicon

Re: Awesome mailing list name for subject line

On Thu, Apr 01, 2010 at 06:57:31PM +0200, Duflot Jean-Luc wrote:
> Why not filter the awesome messages ? Easy too to find them ?

You should already be able to filter by the List-Id header. If not, that
is a mail client issue....

--

-- 
Evan McClain
Aerospace Engineering
Graduate Student Senator  .
evan.mcclain <at> gatech.edu  ..:
Sergey Mironov | 1 Apr 2010 20:04
Picon
Gravatar

Re: launch application in systray : open menu with mouse above, without clicking

Hi!
I checked following code:

mymainmenu = myrc.mainmenu.build() -- My local menu builder
-- ...
mymountbox = widget({ type = "textbox", align="right" }) -- Some widget
-- ...
mymountbox:add_signal("mouse::leave", function ()
    mymainmenu:hide()
end)
mymountbox:add_signal("mouse::enter", function ()
    mymainmenu:show()
end)

it works.

I am using awesome v3.4.4 (Jet Sex)

2010/4/1 Duflot Jean-Luc <jl.duflot <at> laposte.net>:
> Well, I received no answer to my question (:-(
>
> Maybe it is so simple that I should find the solution by myself ; but if I
> am asking it, it's because I don't know how to get it...
>
> May be my question is not clear. So I reformulate it :
>
> I would like the awesome menu appears when the mouse cursor is above the
> menu widget (without clicking), and disappears when it moves away. How to
> combine the  " add_signal("mouse::enter", function () " with the awesome
> menu widget ?
(Continue reading)

ninian | 1 Apr 2010 19:40
Picon

Minimized Wine clients can't be raised again from the tasklist

I'm running Awesome 3.4.4 in floating mode (with titlebars), from Arch 
Linux. If I run any Windows program via Wine and minimize the client, 
then I can't raise and focus the client again by clicking on the 
client's entry in the tasklist. However, there are two other ways I've 
found to raise the minimized client:

1) By issuing the command: wmctrl -R <clientname>

2) By using an 'unminimize' keybinding thus (saw this is another thread):
     awful.key({ modkey, "Shift"   }, "n",
         function ()
             local allclients = client.get(mouse.screen)
             for _,c in ipairs(allclients) do
                 if c.minimized and c:tags()[mouse.screen] == 
awful.tag.selected(mouse.screen) then
                     c.minimized = false
                     client.focus = c
                     c:raise()
                     return
                 end
             end
         end),

Is this a bug or is there something special about Wine clients which I'm 
missing or need to take account of?

Adrian C. | 2 Apr 2010 17:57

Re: awful.client.togglemarked not working

On Fri, 2 Apr 2010, Robin Chew wrote:

> So in 3.4, are you saying that it's not possible to make the client 
> show a red border when the client is marked? Because I added below to 
> rc.lua:

It is possible if the marked and unmarked signals are emitted (according 
to http://awesome.naquadah.org/wiki/Signals they are).

So it's possible if that's the case, just not done by default any more 
(for reasons we already discussed).

>    client.add_signal("marked", function (c)
>        c.border_color = "#ff0000"
>    end)

Does it make any difference if you add: 

c:add_signal("marked", function (c)
    c.border_color = "#ff0000"
end)

...to your manage signal handler (somewhere around sloppy focus 
handler)?

--

-- 
Adrian C. (anrxc) | anrxc..sysphere.org | PGP ID: D20A0618
PGP FP: 02A5 628A D8EE 2A93 996E  929F D5CB 31B7 D20A 0618

(Continue reading)

Thomas Koch | 2 Apr 2010 18:35
Picon
Gravatar

modular awesome.d/ like configuration files

Hi,

could you please provide a possibility to break up the configuration of 
awesome in different files? This could either be done, by awesome itself or by 
the standard configuration file, in which case it would rather be a packaging 
task.

Proposal:

/etc/xdg/awesome/scripts.d/*.lua is searched for scripts
$HOME/.config/awesome/scripts.d/*.lua is searched for scripts

Scripts from both places are executed in lexical order. If a script name 
occurs as well in $HOME/... as in /etc/... then only the first one is 
executed.

Rational:

- The default awesome configuration can be split up in several files
- The user can choose to override only parts of the default configuration
- The user can easily install or uninstall awesome extensions without touching 
already existing configuration

Best regards,

Thomas Koch, http://www.koch.ro


Gmane