diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2012-02-16 23:29:29 +0000 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2012-02-16 23:30:54 +0000 |
commit | d5b4c8e368050cf1b84b03c1379bbbc3c817a713 (patch) | |
tree | 2f918d4c5b95a05ebec68bceec35f7d4fa9a0c4e /src/print_ddate.c | |
parent | 7149f6f78e0d105f02d54e1db60db8b191a98acb (diff) |
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.
Diffstat (limited to 'src/print_ddate.c')
-rw-r--r-- | src/print_ddate.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/print_ddate.c b/src/print_ddate.c index 453e5a2..0401a3f 100644 --- a/src/print_ddate.c +++ b/src/print_ddate.c @@ -4,6 +4,8 @@ #include <stdlib.h> #include <string.h> +#include "i3status.h" + /* define fixed output-Strings */ char *season_long[5] = { "Chaos", @@ -200,6 +202,10 @@ void print_ddate(const char *format, struct tm *current_tm) { if (form == NULL) if ((form = malloc(strlen(format) + 1)) == NULL) return; + if (output_format == O_I3BAR) + printf("{\"name\":\"ddate\", \"full_text\":\""); strcpy(form, format); format_output(form, dt); + if (output_format == O_I3BAR) + printf("\"}"); } |