mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-01 21:10:38 -04:00
11 lines
265 B
JavaScript
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(),
|
|
});
|