2 * vim:ts=4:sw=4:expandtab
4 * i3bar - an xcb-based status- and ws-bar for i3
5 * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
12 #include <xcb/xproto.h>
16 typedef struct rect_t rect;
18 struct ev_loop *main_loop;
20 char *statusline_buffer;
35 /* This data structure represents one JSON dictionary, multiple of these make
36 * up one status line. */
47 /* The amount of pixels necessary to render a separater after the block. */
48 uint32_t sep_block_width;
50 /* The amount of pixels necessary to render this block. These variables are
51 * only temporarily used in refresh_statusline(). */
60 TAILQ_ENTRY(status_block) blocks;
63 TAILQ_HEAD(statusline_head, status_block) statusline_head;
69 #include "workspaces.h"
71 #include "trayclients.h"
75 #include "parse_json_header.h"