all repos — tint2 @ 4170b5d878166595a13cddbded12c805842a1a7a

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