Files
custum-hyprpanel/lib/types/systray.d.ts
Jas Singh 77d4512c82 Added the ability to define custom icons for the system tray. (#408)
* Added the ability to define custom icons for the system tray.

* Add placeholder icon if icon is not defined.

* Update themes
2024-10-30 21:16:15 -07:00

7 lines
107 B
TypeScript

export type SystrayIconMap = {
[key: string]: {
icon: string;
color: string;
};
};