diff options
| author | Tim <godlyfast@gmail.com> | 2026-01-08 21:46:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-08 14:46:05 -0500 |
| commit | 7152d5ec6f237acc4eae66142f14f697d60a3ae6 (patch) | |
| tree | 2c5c0d66345e11bbfb4874057e286f281fa71054 | |
| parent | de51fd7f8d6e5e0b0d68790b9c2d79d67d0564a7 (diff) | |
fix(swaync): correct mpris album art size (#913)
The mpris widget image-size was set to 10 pixels, causing album art
to appear as a tiny distorted strip. Changed to 96 pixels for proper
display with slight border radius for visual consistency.
| -rwxr-xr-x | config/swaync/config.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/swaync/config.json b/config/swaync/config.json index 0aa1af40..a5518596 100755 --- a/config/swaync/config.json +++ b/config/swaync/config.json @@ -51,8 +51,8 @@ "text": "Notification" }, "mpris": { - "image-size": 10, - "image-radius": 0 + "image-size": 96, + "image-radius": 8 }, "volume": { "label": "" |
