nixos-configs/nixosModules/ags/v2/widgets/notifs/main.tsx

15 lines
290 B
TypeScript
Raw Normal View History

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>
);