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
|
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 {
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue