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