mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #188] spotify_player process launched without streaming feature installed #1033
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#1033
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 @flexwie on GitHub (May 5, 2023).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/188
Describe the bug
I installed spotify-player without the streaming feature enabled as I plan to use a separate spotifyd instance.
Yet once I open
spotify_playerit also spawns aspotify_playerprocess.This is annoying because it moves the focus from the terminal and pollutes the dock on MacOS.
To Reproduce
Install with
cargo install spotify_player --no-default-features --features image,media-controlExpected behavior
The TUI opens and nothing more. Spotifyd or any other device that was set in config is used for playback.
Log and backtrace
Environment
--no-default-features --features image,media-control@aome510 commented on GitHub (May 5, 2023):
This behaviour is expected as macos/windows need an openning window to listen to media events. Disabling
media-controlfeature should not spawn a window on startup.Quote from the config document (https://github.com/aome510/spotify-player/blob/master/docs/config.md#media-control):
@flexwie commented on GitHub (May 8, 2023):
Thanks for pointing that out, I completely missed that part of the documentation