mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
16 lines
433 B
JavaScript
16 lines
433 B
JavaScript
const { Gdk, Gtk } = imports.gi;
|
|
import { Utils, Widget } from '../../imports.js';
|
|
const { Box, Button, EventBox, Label, Revealer, Scrollable, Stack } = Widget;
|
|
const { execAsync, exec } = Utils;
|
|
import { QuickScripts } from './quickscripts.js';
|
|
|
|
export default Scrollable({
|
|
hscroll: "never",
|
|
vscroll: "automatic",
|
|
child: Box({
|
|
vertical: true,
|
|
children: [
|
|
QuickScripts(),
|
|
]
|
|
})
|
|
});
|