mirror of
https://github.com/xsghetti/HyprCrux.git
synced 2025-07-01 21:10:38 -04:00
17 lines
452 B
JavaScript
17 lines
452 B
JavaScript
import Widget from 'resource:///com/github/Aylur/ags/widget.js';
|
|
const { Box, Scrollable } = Widget;
|
|
import QuickScripts from './tools/quickscripts.js';
|
|
import ColorPicker from './tools/colorpicker.js';
|
|
|
|
export default Scrollable({
|
|
hscroll: "never",
|
|
vscroll: "automatic",
|
|
child: Box({
|
|
vertical: true,
|
|
className: 'spacing-v-10',
|
|
children: [
|
|
QuickScripts(),
|
|
ColorPicker(),
|
|
]
|
|
})
|
|
});
|