mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-01 21:10:38 -04:00
12 lines
342 B
JavaScript
12 lines
342 B
JavaScript
import PopupWindow from '../.widgethacks/popupwindow.js';
|
|
import SidebarLeft from "./sideleft.js";
|
|
|
|
export default () => PopupWindow({
|
|
keymode: 'exclusive',
|
|
anchor: ['left', 'top', 'bottom'],
|
|
name: 'sideleft',
|
|
layer: 'top',
|
|
showClassName: 'sideleft-show',
|
|
hideClassName: 'sideleft-hide',
|
|
child: SidebarLeft(),
|
|
});
|