Compare commits
No commits in common. "a67cdbd66f3659b3489849f3c4b129f6db013019" and "1886f27268808ae7226d54cf5f6ffe6d8f5aef9b" have entirely different histories.
a67cdbd66f
...
1886f27268
6 changed files with 7 additions and 24 deletions
|
|
@ -44,7 +44,6 @@ PanelWindow {
|
||||||
id: label
|
id: label
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
text: M.FlyoutState.text
|
text: M.FlyoutState.text
|
||||||
textFormat: Text.RichText
|
|
||||||
color: M.Theme.base05
|
color: M.Theme.base05
|
||||||
font.pixelSize: M.Theme.fontSize
|
font.pixelSize: M.Theme.fontSize
|
||||||
font.family: M.Theme.fontFamily
|
font.family: M.Theme.fontFamily
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ M.BarSection {
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
}
|
}
|
||||||
M.BarLabel {
|
M.BarLabel {
|
||||||
label: root.player?.trackTitle || root.player?.identity || ""
|
label: root.player?.identity ?? ""
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
import QtQuick
|
|
||||||
import QtQuick.Effects
|
|
||||||
|
|
||||||
Image {
|
|
||||||
id: root
|
|
||||||
|
|
||||||
required property color tint
|
|
||||||
|
|
||||||
fillMode: Image.PreserveAspectFit
|
|
||||||
|
|
||||||
layer.enabled: true
|
|
||||||
layer.effect: MultiEffect {
|
|
||||||
colorization: 1.0
|
|
||||||
colorizationColor: root.tint
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -20,10 +20,10 @@ RowLayout {
|
||||||
implicitWidth: 18
|
implicitWidth: 18
|
||||||
implicitHeight: 18
|
implicitHeight: 18
|
||||||
|
|
||||||
M.ThemedIcon {
|
Image {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
source: iconItem.modelData.icon
|
source: iconItem.modelData.icon
|
||||||
tint: M.Theme.base05
|
fillMode: Image.PreserveAspectFit
|
||||||
}
|
}
|
||||||
|
|
||||||
HoverHandler {
|
HoverHandler {
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,8 @@ PanelWindow {
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
|
|
||||||
WlrLayershell.layer: WlrLayer.Overlay
|
WlrLayershell.layer: WlrLayer.Overlay
|
||||||
WlrLayershell.exclusiveZone: 0
|
// -1 = ignore exclusive zones so this covers the full screen including the bar
|
||||||
|
WlrLayershell.exclusiveZone: -1
|
||||||
WlrLayershell.namespace: "nova-traymenu"
|
WlrLayershell.namespace: "nova-traymenu"
|
||||||
|
|
||||||
anchors.top: true
|
anchors.top: true
|
||||||
|
|
@ -45,7 +46,7 @@ PanelWindow {
|
||||||
Math.round(menuWindow.anchorX - menuStack.width / 2),
|
Math.round(menuWindow.anchorX - menuStack.width / 2),
|
||||||
menuWindow.width - menuStack.width
|
menuWindow.width - menuStack.width
|
||||||
))
|
))
|
||||||
y: 0
|
y: M.Theme.barHeight
|
||||||
|
|
||||||
width: menuStack.width
|
width: menuStack.width
|
||||||
height: menuStack.height
|
height: menuStack.height
|
||||||
|
|
@ -58,7 +59,7 @@ PanelWindow {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
color: M.Theme.base01
|
color: M.Theme.base01
|
||||||
opacity: Math.max(M.Theme.barOpacity, 0.85)
|
opacity: M.Theme.barOpacity
|
||||||
topLeftRadius: 0
|
topLeftRadius: 0
|
||||||
topRightRadius: 0
|
topRightRadius: 0
|
||||||
bottomLeftRadius: M.Theme.radius
|
bottomLeftRadius: M.Theme.radius
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@ Clock 1.0 Clock.qml
|
||||||
Volume 1.0 Volume.qml
|
Volume 1.0 Volume.qml
|
||||||
Tray 1.0 Tray.qml
|
Tray 1.0 Tray.qml
|
||||||
TrayMenu 1.0 TrayMenu.qml
|
TrayMenu 1.0 TrayMenu.qml
|
||||||
ThemedIcon 1.0 ThemedIcon.qml
|
|
||||||
Battery 1.0 Battery.qml
|
Battery 1.0 Battery.qml
|
||||||
Mpris 1.0 Mpris.qml
|
Mpris 1.0 Mpris.qml
|
||||||
Network 1.0 Network.qml
|
Network 1.0 Network.qml
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue