rename *Content.qml to *Applet.qml
This commit is contained in:
parent
989182d603
commit
6461b9a943
14 changed files with 14 additions and 14 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ M.BarSection {
|
|||
panelTitle: "CPU"
|
||||
contentWidth: 260
|
||||
|
||||
C.CpuContent {
|
||||
C.CpuApplet {
|
||||
width: hoverPanel.contentWidth
|
||||
cores: root._cores
|
||||
coreMaxFreq: root._coreMaxFreq
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ M.BarSection {
|
|||
panelTitle: "Disk"
|
||||
contentWidth: 260
|
||||
|
||||
C.DiskContent {
|
||||
C.DiskApplet {
|
||||
width: hoverPanel.contentWidth
|
||||
mounts: root._mounts
|
||||
accentColor: root.accentColor
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ M.BarSection {
|
|||
panelTitle: "Memory"
|
||||
contentWidth: 240
|
||||
|
||||
C.MemoryContent {
|
||||
C.MemoryApplet {
|
||||
width: hoverPanel.contentWidth
|
||||
percent: root.percent
|
||||
usedGb: root.usedGb
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ M.BarSection {
|
|||
panelTitle: "Now Playing"
|
||||
contentWidth: 280
|
||||
|
||||
C.MprisContent {
|
||||
C.MprisApplet {
|
||||
width: hoverPanel.contentWidth
|
||||
player: root.player
|
||||
players: root._players
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ M.BarSection {
|
|||
panelTitle: "Temperature"
|
||||
contentWidth: 220
|
||||
|
||||
C.TemperatureContent {
|
||||
C.TemperatureApplet {
|
||||
width: hoverPanel.contentWidth
|
||||
temp: root._temp
|
||||
warm: root._warm
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ M.BarSection {
|
|||
panelTitle: "Sound"
|
||||
contentWidth: 220
|
||||
|
||||
C.VolumeContent {
|
||||
C.VolumeApplet {
|
||||
width: hoverPanel.contentWidth
|
||||
sink: root.sink
|
||||
sinkList: root._sinkList
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue