On Tue 17 May 2011 12:15:36 PM PDT, Suraj N. Kurapati wrote:
> On Tue 17 May 2011 10:27:56 AM PDT, Jesse W. Hathaway wrote:
> > Is it possible to add an event hook to look for the creation of
> > a specific client, e.g. VLC,
>
> Yes, add a handler for the CreateClient event:
>
>   control:
>     event:
>       CreateClient: |
>         client_id = argv[0]
>         # now do something with the client_id

Whoops, I forgot to check the created client's title:

  control:
    event:
      CreateClient: |
        client_id = argv[0]
        client = Client.new(client_id)

        if client.props.read =~ /VLC/i
          # do something with this VLC window
        end

--
fortune: No such file or directory

Attachment: signature.asc
Description: PGP signature

Reply via email to