nixos-configs/nixosModules/ags/v2/widgets/notifs/main.tsx
matt1432 5481ec544b
All checks were successful
Discord / discord commits (push) Has been skipped
feat(agsV2): fix breaking changes and add notification impl
2024-10-15 20:01:20 -04:00

14 lines
290 B
TypeScript

import { Astal } from 'astal/gtk3';
import Popups from './popups';
export const NotifPopups = () => (
<window
name="notifications"
layer={Astal.Layer.OVERLAY}
anchor={Astal.WindowAnchor.TOP | Astal.WindowAnchor.LEFT}
>
<Popups />
</window>
);