mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-03 13:50:38 -04:00
25 lines
576 B
JavaScript
25 lines
576 B
JavaScript
import PopupWindow from "./modules/PopupWindow.js";
|
|
|
|
|
|
export default () => PopupWindow({
|
|
|
|
name: "test",
|
|
exclusivity: "ignore",
|
|
// transition: "slide_left", //bar.position === "top" ? "slide_down" : "slide_up",
|
|
// anchor: ["top"],
|
|
layout: "right",
|
|
// anchor: ["right", "bottom", "top"],
|
|
child: Widget.Label({
|
|
label: "No sex",
|
|
css: `background-color: #0e0e0e;
|
|
border: 2px solid #FFFFFF;`,
|
|
// vpack: "fill",
|
|
// hpack: "fill",
|
|
vexpand: true,
|
|
hexpand: true,
|
|
}),
|
|
// vpack: "fill",
|
|
// hpack: "fill",
|
|
vexpand: true,
|
|
hexpand: true,
|
|
})
|