nixos-configs/nixosModules/ags/v2/widgets/notifs/main.tsx
matt1432 50fc642f03
All checks were successful
Discord / discord commits (push) Has been skipped
feat(agsV2): add notif-button in bar
2024-10-16 22:33:15 -04:00

26 lines
627 B
TypeScript

import { Astal } from 'astal/gtk3';
import PopupWindow from '../misc/popup-window';
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>
);
export const NotifCenter = () => (
<PopupWindow
name="notif-center"
anchor={Astal.WindowAnchor.TOP | Astal.WindowAnchor.RIGHT}
>
<box css="min-height: 100px; min-width: 100px; background: black;" />
</PopupWindow>
);