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