Files
colorshell/ags/widget/bar/Logo.tsx
T
2025-01-22 13:45:59 -03:00

11 lines
277 B
TypeScript

import { Box, Button } from "astal/gtk3/widget";
import { Process } from "astal";
export function Logo() {
return (
<Box className={"logo"}>
<Button onClick={ () => Process.exec("hyprctl dispatch exec anyrun") } label={""} />
</Box>
)
}