all repos — tint2 @ 1753641fc912abb22aa3b5cce0e58f2dd8993e1a

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