mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
11 lines
248 B
JavaScript
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(),
|
|
});
|