Files
custum-hyprpanel/modules/bar/SideEffects.ts
Jas Singh b080d6b00d Added an icon to the calendar widget in the bar. (#181)
* Added an icon to the calendar widget in the bar.

* Updated themes for calendar icon.
2024-08-24 23:52:33 -07:00

16 lines
330 B
TypeScript

import options from "options";
const { showIcon, showTime } = options.bar.clock;
showIcon.connect("changed", () => {
if (!showTime.value && !showIcon.value) {
showTime.value = true;
}
});
showTime.connect("changed", () => {
if (!showTime.value && !showIcon.value) {
showIcon.value = true;
}
});