Files
colorshell/ags/widget/bar/Logo.ts
T
2025-02-12 13:39:38 -03:00

15 lines
448 B
TypeScript

import { Widget } from "astal/gtk3";
import AstalHyprland from "gi://AstalHyprland";
export function Logo() {
return new Widget.Box({
className: "logo",
//tooltipText: tr("bar.logo.tooltip"),
child: new Widget.Button({
onClick: () => AstalHyprland.get_default().dispatch("exec", "anyrun"),
className: "nf",
label: "",
} as Widget.ButtonProps)
} as Widget.BoxProps);
}