quickshell: fix media, power-profile and mute icon names

This commit is contained in:
rope 2026-07-30 15:18:55 +01:00
parent c7d518ab6a
commit 7e8275a654

View file

@ -3149,7 +3149,7 @@ in
spacing: 6
SIcon {
anchors.verticalCenter: parent.verticalCenter
text: volWidget.muted ? "no_sound" : "volume_up"
text: volWidget.muted ? "volume-x" : "volume-2"
font.pixelSize: 15
}
SText {
@ -3557,9 +3557,9 @@ in
Repeater {
model: [
{ name: "power-saver", profile: PowerProfile.PowerSaver, label: "energy_savings_leaf", tip: "Saver" },
{ name: "balanced", profile: PowerProfile.Balanced, label: "balance", tip: "Balanced" },
{ name: "performance", profile: PowerProfile.Performance, label: "speed", tip: "Performance" }
{ name: "power-saver", profile: PowerProfile.PowerSaver, label: "leaf", tip: "Saver" },
{ name: "balanced", profile: PowerProfile.Balanced, label: "scale", tip: "Balanced" },
{ name: "performance", profile: PowerProfile.Performance, label: "gauge", tip: "Performance" }
]
Rectangle {
@ -4043,9 +4043,9 @@ in
spacing: 4
Repeater {
model: [
{ glyph: "skip_previous", act: "prev" },
{ glyph: mediaCard.modelData.playbackState === MprisPlaybackState.Playing ? "pause" : "play_arrow", act: "toggle" },
{ glyph: "skip_next", act: "next" }
{ glyph: "skip-back", act: "prev" },
{ glyph: mediaCard.modelData.playbackState === MprisPlaybackState.Playing ? "pause" : "play", act: "toggle" },
{ glyph: "skip-forward", act: "next" }
]
HoverRow {
id: mediaBtn