all repos — tint2 @ 93c9830c2368c93dee1713e59c632ea32c2df4cb

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