nixos-configs/nixosModules/ags/v2/widgets/bg-fade/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

24 lines
658 B
TypeScript

import { Astal } from 'astal/gtk3';
export default () => {
return (
<window
name="bg-fade"
layer={Astal.Layer.BACKGROUND}
exclusivity={Astal.Exclusivity.IGNORE}
anchor={
Astal.WindowAnchor.TOP |
Astal.WindowAnchor.BOTTOM |
Astal.WindowAnchor.LEFT |
Astal.WindowAnchor.RIGHT
}
css={`
background-image: -gtk-gradient (linear,
left top, left bottom,
from(rgba(0, 0, 0, 0.5)),
to(rgba(0, 0, 0, 0)));
`}
/>
);
};