Files
Quickbar/Common/HoverMediator.qml
2025-09-24 17:02:46 -03:00

15 lines
289 B
QML

pragma Singleton
import Quickshell
import qs.Common
Singleton {
id: mediatorRoot
property var component: null
property string type: ""
property int x: component? component.implicitWidth : 0
property int y: component? (component.implicitHeight + Theme.gaps) : 100
}