mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
import PopupWindow from '../../lib/popupwindow.js';
|
|
import SidebarLeft from "./sideleft.js";
|
|
|
|
export default () => PopupWindow({
|
|
focusable: true,
|
|
anchor: ['left', 'top', 'bottom'],
|
|
name: 'sideleft',
|
|
// exclusivity: 'exclusive',
|
|
showClassName: 'sideleft-show',
|
|
hideClassName: 'sideleft-hide',
|
|
child: SidebarLeft(),
|
|
});
|