Created new hover window, theming changes

This commit is contained in:
Amaro Lopes
2025-09-24 01:04:31 -03:00
parent 01afd5718c
commit 161988cbb6
7 changed files with 205 additions and 92 deletions

18
Common/HoverMediator.qml Normal file
View File

@@ -0,0 +1,18 @@
pragma Singleton
import Quickshell
import qs.Common
Singleton {
id: mediatorRoot
property var component: null
property string type: ""
property int width: 100
property int height: 100
property int x: component? component.implicitWidth : 0
property int y: component? (component.implicitHeight + Theme.gaps) : 100
property bool visible: false
}