import qs.services import qs.config import Quickshell import QtQuick.Layouts FloatingWindow { id: root property list cwd: ["Home"] signal accepted(path: string) implicitWidth: 1000 implicitHeight: 600 color: Colours.palette.m3surface RowLayout { anchors.fill: parent anchors.margins: Appearance.padding.normal spacing: Appearance.spacing.normal ColumnLayout { Layout.fillWidth: true Layout.fillHeight: true spacing: Appearance.spacing.small HeaderBar { Layout.fillWidth: true dialog: root } FolderContents { Layout.fillWidth: true Layout.fillHeight: true dialog: root } } } }