From d5b4c8e368050cf1b84b03c1379bbbc3c817a713 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 16 Feb 2012 23:29:29 +0000 Subject: Implement the i3bar JSON protocol This hardcodes all the JSON parts. Strings are not properly escaped currently. The best/easiest way to fix this is by actually using libyajl. --- src/print_disk_info.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/print_disk_info.c') diff --git a/src/print_disk_info.c b/src/print_disk_info.c index b2cbd9c..1ac22d0 100644 --- a/src/print_disk_info.c +++ b/src/print_disk_info.c @@ -45,6 +45,9 @@ static void print_bytes_human(uint64_t bytes) { void print_disk_info(const char *path, const char *format) { const char *walk; + if (output_format == O_I3BAR) + printf("{\"name\":\"disk_info\", \"instance\": \"%s\", \"full_text\":\"", path); + #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) struct statfs buf; @@ -83,4 +86,7 @@ void print_disk_info(const char *path, const char *format) { walk += strlen("avail"); } } + + if (output_format == O_I3BAR) + printf("\"}"); } -- cgit v1.2.3