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