nosignal-shell/modules/bar/popouts/Wrapper.qml
2 * r + 2 * t 24a3da8138 feat: bar popouts
Create active window popout
2025-06-02 16:31:26 +08:00

19 lines
327 B
QML

import "root:/services"
import "root:/config"
import Quickshell
import QtQuick
Item {
id: root
required property ShellScreen screen
implicitWidth: content.implicitWidth
implicitHeight: content.implicitHeight + BorderConfig.rounding * 2
Content {
id: content
screen: root.screen
}
}