feat(ags): add wifi widget

This commit is contained in:
matt1432 2024-12-19 17:46:57 -05:00
parent 8f82b1885a
commit 6bc32a8d8e
11 changed files with 388 additions and 68 deletions
modules/ags/config/widgets/network

View file

@ -0,0 +1,15 @@
import { Astal } from 'astal/gtk3';
import PopupWindow from '../misc/popup-window';
import NetworkWidget from './main';
export default () => (
<PopupWindow
name="network"
anchor={Astal.WindowAnchor.RIGHT | Astal.WindowAnchor.TOP}
>
<NetworkWidget />
</PopupWindow>
);