X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=i3bar%2Finclude%2Fworkspaces.h;h=1b8c6c729bd813ba6afb4c26f3e6af1ff5adcea2;hb=e8704bb33b8df68cc6112e2a58f7c78ec7b114ad;hp=b9cefa8405bff15ac3a82ccb01d67f53c10c2eac;hpb=8d0fb482d98ff8932b40b30eb8dd78acf51f4aef;p=i3%2Fi3 diff --git a/i3bar/include/workspaces.h b/i3bar/include/workspaces.h index b9cefa84..1b8c6c72 100644 --- a/i3bar/include/workspaces.h +++ b/i3bar/include/workspaces.h @@ -4,7 +4,7 @@ * i3bar - an xcb-based status- and ws-bar for i3 * © 2010-2012 Axel Wagner and contributors (see also: LICENSE) * - * workspaces.c: Maintaining the workspace-lists + * workspaces.c: Maintaining the workspace lists * */ #pragma once @@ -18,13 +18,13 @@ typedef struct i3_ws i3_ws; TAILQ_HEAD(ws_head, i3_ws); /* - * Start parsing the received json-string + * Start parsing the received JSON string * */ void parse_workspaces_json(char *json); /* - * free() all workspace data-structures + * free() all workspace data structures * */ void free_workspaces(void); @@ -36,7 +36,7 @@ struct i3_ws { int name_width; /* The rendered width of the name */ bool visible; /* If the ws is currently visible on an output */ bool focused; /* If the ws is currently focused */ - bool urgent; /* If the urgent-hint of the ws is set */ + bool urgent; /* If the urgent hint of the ws is set */ rect rect; /* The rect of the ws (not used (yet)) */ struct i3_output *output; /* The current output of the ws */