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

12 lines
307 B
TypeScript

import {Process} from "astal";
import { Box, Button } from "astal/gtk3/widget";
export function CCToggle() {
return (
<Box className={"cc-toggle"}>
<Button onClick={() => Process.exec("eww open --toggle control-center")}
label={"󰂚"}/>
</Box>
)
}