all repos — tint2 @ 87e1ccc6bf997b8141008a1134a2229b41bb0cc6

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/util/color.h (raw)

1
2
3
4
5
6
7
8
9
10
11
#ifndef COLOR_H
#define COLOR_H

typedef struct Color {
    // Values are in [0, 1], with 0 meaning no intensity.
    double rgb[3];
    // Values are in [0, 1], with 0 meaning fully transparent, 1 meaning fully opaque.
    double alpha;
} Color;

#endif // COLOR_H