mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #740] Warp Terminal: Kitty Graphics Protocol for Album Art Not Auto-Detecting #1377
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#1377
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ryancohan on GitHub (Jun 2, 2025).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/740
Describe the bug
When using Warp Terminal, spotify-player isn't detecting terminal graphics capabilities and falling back to block art.
To Reproduce
echo $TERM # note output is xterm-256color--features imageTERM=xterm-kitty spotify_player; note album art is cleanExpected behaviour
Expect spotify-player to detect graphics mode and render album art non-distorted.
Log and backtrace
Please refer to this URL for more details.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
cargo build --release --features imageAdditional context
@aome510 commented on GitHub (Jun 22, 2025):
That is expected and not really a bug from
spotify_playerside. You can find the logic to detect kitty support in theviuerlibrary:github.com/atanunq/viuer@a9921f5d3d/src/printer/kitty.rs (L58-L69)@j4james commented on GitHub (Jun 22, 2025):
FYI, someone is currently working on a PR for viuer which detects the kitty protocol more reliably, so it doesn't have to rely on a hardcoded lists of
TERMvalues (see https://github.com/atanunq/viuer/pull/79). In theory that should get Warp Terminal to work correctly.@aome510 commented on GitHub (Jun 22, 2025):
Gotcha, thanks for the heads up. I'll keep an eye out for any updates from the library