nixos-configs/nixosModules/ags/v2/widgets/notifs/main.tsx
matt1432 2ee60de237
All checks were successful
Discord / discord commits (push) Has been skipped
feat(agsV2): get notif cursors right
2024-10-15 23:56:11 -04:00

15 lines
324 B
TypeScript

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