chore: clean up systray code

This commit is contained in:
Nydragon 2024-08-27 19:19:25 +02:00
parent f61715d601
commit 388d31b1ec
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 1 additions and 31 deletions

View file

@ -5,7 +5,6 @@ import Quickshell
import Quickshell.Services.SystemTray import Quickshell.Services.SystemTray
Rectangle { Rectangle {
id: aoutput
width: parent.width width: parent.width
height: 100 height: 100
anchors.bottomMargin: 5 anchors.bottomMargin: 5
@ -27,7 +26,6 @@ Rectangle {
anchors.margins: 4 anchors.margins: 4
Repeater { Repeater {
// Show all sources, regardless of what sink they are assigned to
model: SystemTray.items model: SystemTray.items
SysTrayItem { SysTrayItem {

View file

@ -21,46 +21,18 @@ MouseArea {
Rectangle { Rectangle {
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: parent.width Layout.preferredHeight: parent.width
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
color: "black" color: "black"
radius: 3 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 height: width
width: parent.width width: parent.width
// Text {
//text: item.id
//}
//
Image { Image {
id: icon
source: item.icon source: item.icon
//fillMode: Image.PreserveAspectFit
//Layout.fillWidth: true
width: parent.width width: parent.width
height: parent.height 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 fillMode: Image.Stretch
} }
} }