X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=i3bar%2Finclude%2Ftrayclients.h;h=694faa483a7ac5682812094503d888ff2362f055;hb=884214f14fdbd0a4a368d2a36d5e50324fa1d52a;hp=1113daebfdcb1403a9e0d43985d74c9607127d84;hpb=c527497a4be64ff8d91d7978211db9358f9cef11;p=i3%2Fi3 diff --git a/i3bar/include/trayclients.h b/i3bar/include/trayclients.h index 1113daeb..694faa48 100644 --- a/i3bar/include/trayclients.h +++ b/i3bar/include/trayclients.h @@ -1,13 +1,11 @@ /* - * i3bar - an xcb-based status- and ws-bar for i3 - * - * © 2010-2011 Axel Wagner and contributors + * vim:ts=4:sw=4:expandtab * - * See file LICNSE for license information + * i3bar - an xcb-based status- and ws-bar for i3 + * © 2010 Axel Wagner and contributors (see also: LICENSE) * */ -#ifndef TRAYCLIENT_H_ -#define TRAYCLIENT_H_ +#pragma once #include "common.h" @@ -16,11 +14,9 @@ typedef struct trayclient trayclient; TAILQ_HEAD(tc_head, trayclient); struct trayclient { - xcb_window_t win; /* The window ID of the tray client */ - bool mapped; /* Whether this window is mapped */ - int xe_version; /* The XEMBED version supported by the client */ + xcb_window_t win; /* The window ID of the tray client */ + bool mapped; /* Whether this window is mapped */ + int xe_version; /* The XEMBED version supported by the client */ - TAILQ_ENTRY(trayclient) tailq; /* Pointer for the TAILQ-Macro */ + TAILQ_ENTRY(trayclient) tailq; /* Pointer for the TAILQ-Macro */ }; - -#endif