Files
colorshell/ags/widget/bar/Logo.ts
T

14 lines
418 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"),
label: ""
} as Widget.ButtonProps)
} as Widget.BoxProps);
}