nix flake update
This commit is contained in:
@@ -22,15 +22,31 @@ Rectangle {
|
||||
id: content
|
||||
height: 20
|
||||
anchors.centerIn: parent
|
||||
Text {
|
||||
id: speaker
|
||||
text: root.defaultSpeaker.audio.muted ? "muted" : "unmuted"
|
||||
color: Colors.textPrimary
|
||||
spacing: 4
|
||||
Rectangle {
|
||||
implicitWidth: 24
|
||||
implicitHeight: 20
|
||||
color: "transparent"
|
||||
Text {
|
||||
anchors.centerIn: parent
|
||||
text: root.defaultSpeaker.audio.muted ? "" : ""
|
||||
font.family: "CaskaydiaCove NF"
|
||||
font.pixelSize: 20
|
||||
color: Colors.textPrimary
|
||||
}
|
||||
}
|
||||
Text {
|
||||
id: mic
|
||||
text: root.defaultMic.audio.muted ? "muted" : "unmuted"
|
||||
color: Colors.textPrimary
|
||||
Rectangle {
|
||||
implicitWidth: 24
|
||||
implicitHeight: 20
|
||||
color: "transparent"
|
||||
radius: 3
|
||||
Text {
|
||||
anchors.centerIn: parent
|
||||
text: root.defaultMic.audio.muted ? "" : ""
|
||||
font.family: "CaskaydiaCove NFM"
|
||||
font.pixelSize: 30
|
||||
color: Colors.textPrimary
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user