nichts/modules/styling/config/widgets/dock/main.js
2024-07-07 13:23:38 +02:00

11 lines
265 B
JavaScript

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