dots-hyprland/.config/ags/widgets/dock/main.js
2023-12-25 18:16:14 +07:00

11 lines
248 B
JavaScript

import { App, Widget } from '../../imports.js';
import Dock from './dock.js';
export default () => Widget.Window({
name: 'dock',
layer: 'bottom',
anchor: ['bottom'],
exclusivity: 'normal',
visible: true,
child: Dock(),
});