forked from Shinonome/dots-hyprland
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
import PopupWindow from '../.widgethacks/popupwindow.js';
|
|
import SidebarRight from "./sideright.js";
|
|
|
|
export default () => PopupWindow({
|
|
keymode: 'on-demand',
|
|
anchor: ['right', 'top', 'bottom'],
|
|
name: 'sideright',
|
|
layer: 'overlay',
|
|
child: SidebarRight(),
|
|
});
|