chore: clean up systray code
This commit is contained in:
parent
f61715d601
commit
388d31b1ec
2 changed files with 1 additions and 31 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue