rename *Content.qml to *Applet.qml

This commit is contained in:
Damocles 2026-04-17 22:08:26 +02:00
parent 989182d603
commit 6461b9a943
14 changed files with 14 additions and 14 deletions

View file

@ -1,8 +1,8 @@
module applets
HexWaveBackground 1.0 HexWaveBackground.qml
VolumeContent 1.0 VolumeContent.qml
MprisContent 1.0 MprisContent.qml
CpuContent 1.0 CpuContent.qml
MemoryContent 1.0 MemoryContent.qml
TemperatureContent 1.0 TemperatureContent.qml
DiskContent 1.0 DiskContent.qml
VolumeApplet 1.0 VolumeApplet.qml
MprisApplet 1.0 MprisApplet.qml
CpuApplet 1.0 CpuApplet.qml
MemoryApplet 1.0 MemoryApplet.qml
TemperatureApplet 1.0 TemperatureApplet.qml
DiskApplet 1.0 DiskApplet.qml

View file

@ -179,7 +179,7 @@ WlSessionLockSurface {
readonly property var _mprisPlayer: _mprisPlayers[0] ?? null
readonly property bool _playing: _mprisPlayer?.playbackState === MprisPlaybackState.Playing
C.MprisContent {
C.MprisApplet {
id: _mprisContent
anchors.left: parent.left
anchors.right: parent.right
@ -209,7 +209,7 @@ WlSessionLockSurface {
objects: [Pipewire.defaultAudioSink]
}
C.VolumeContent {
C.VolumeApplet {
id: _volumeContent
anchors.left: parent.left
anchors.right: parent.right

View file

@ -76,7 +76,7 @@ M.BarSection {
panelTitle: "CPU"
contentWidth: 260
C.CpuContent {
C.CpuApplet {
width: hoverPanel.contentWidth
cores: root._cores
coreMaxFreq: root._coreMaxFreq

View file

@ -57,7 +57,7 @@ M.BarSection {
panelTitle: "Disk"
contentWidth: 260
C.DiskContent {
C.DiskApplet {
width: hoverPanel.contentWidth
mounts: root._mounts
accentColor: root.accentColor

View file

@ -67,7 +67,7 @@ M.BarSection {
panelTitle: "Memory"
contentWidth: 240
C.MemoryContent {
C.MemoryApplet {
width: hoverPanel.contentWidth
percent: root.percent
usedGb: root.usedGb

View file

@ -124,7 +124,7 @@ M.BarSection {
panelTitle: "Now Playing"
contentWidth: 280
C.MprisContent {
C.MprisApplet {
width: hoverPanel.contentWidth
player: root.player
players: root._players

View file

@ -77,7 +77,7 @@ M.BarSection {
panelTitle: "Temperature"
contentWidth: 220
C.TemperatureContent {
C.TemperatureApplet {
width: hoverPanel.contentWidth
temp: root._temp
warm: root._warm

View file

@ -115,7 +115,7 @@ M.BarSection {
panelTitle: "Sound"
contentWidth: 220
C.VolumeContent {
C.VolumeApplet {
width: hoverPanel.contentWidth
sink: root.sink
sinkList: root._sinkList