nixos-configs/nixosModules/ags/config/widgets/bluetooth/wim.tsx
matt1432 d02d82c7e1
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags): start working on bluetooth
2024-12-04 00:18:11 -05:00

15 lines
314 B
TypeScript

import { Astal } from 'astal/gtk3';
import PopupWindow from '../misc/popup-window';
import BluetoothWidget from './main';
export default () => (
<PopupWindow
name="bluetooth"
anchor={Astal.WindowAnchor.RIGHT | Astal.WindowAnchor.TOP}
>
<BluetoothWidget />
</PopupWindow>
);