Re: [dev] [dwmstatus] dropbox status

From: Andrew Gwozdziewycz <web_AT_apgwoz.com>
Date: Wed, 26 Jun 2013 09:51:56 -0400

There's a python command line client for dropbox that could provide it.
You'd could call out to popen(3) to grab it.

So, something like:

    char *status[50];
    FILE *f = popen("dropbox status", "r");
    fgets(status, 50, f);
    pclose(f);

would do the trick.

On Wed, Jun 26, 2013 at 9:45 AM, Dennis Yurichev <dennis_AT_yurichev.com>wrote:

> Hi.
>
> Is there any recipe for showing dropbox sync status in status line?
>
> --
> http://www.yurichev.com
>
>


-- 
http://apgwoz.com
Received on Wed Jun 26 2013 - 15:51:56 CEST

This archive was generated by hypermail 2.3.0 : Wed Jun 26 2013 - 16:00:07 CEST