nixos-configs/modules/ags/config/widgets/bluetooth/wim.tsx

16 lines
314 B
TypeScript
Raw Normal View History

2024-12-04 00:18:11 -05:00
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>
);