diff --git a/src/systray/SysTray.qml b/src/systray/SysTray.qml index 08d6061..d792405 100644 --- a/src/systray/SysTray.qml +++ b/src/systray/SysTray.qml @@ -5,7 +5,6 @@ import Quickshell import Quickshell.Services.SystemTray Rectangle { - id: aoutput width: parent.width height: 100 anchors.bottomMargin: 5 @@ -27,7 +26,6 @@ Rectangle { anchors.margins: 4 Repeater { - // Show all sources, regardless of what sink they are assigned to model: SystemTray.items SysTrayItem { diff --git a/src/systray/SysTrayItem.qml b/src/systray/SysTrayItem.qml index 9fb988e..f578fb0 100644 --- a/src/systray/SysTrayItem.qml +++ b/src/systray/SysTrayItem.qml @@ -21,46 +21,18 @@ MouseArea { Rectangle { Layout.fillWidth: true Layout.preferredHeight: parent.width - Layout.alignment: Qt.AlignHCenter + color: "black" radius: 3 - - Component.onCompleted: () => { - console.log(JSON.stringify(Object.entries(item), null, 2)); - console.log(height, width); - } - - //height: icon.height - //width: icon.width - height: width - width: parent.width - // Text { - //text: item.id - //} - // - Image { - id: icon source: item.icon - //fillMode: Image.PreserveAspectFit - - //Layout.fillWidth: true - width: parent.width height: parent.height - //Layout.maximumWidth: parent.width - //Layout.maximumHeight: parent.height - - //sourceSize.width: parent.width - //sourceSize.height: parent.height - // - //horizontalAlignment: Image.AlignHCenter - //verticalAlignment: Image.AlignVCenter fillMode: Image.Stretch } }