mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #238] Allow creation of streaming device in daemon mode + don't register another device when spawning TUI #123
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#123
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 @nazriel on GitHub (Aug 28, 2023).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/238
Is your feature request related to a problem? Please describe.
Currently if I spawn spotify_player in daemon and then launch another instance in TUI mode - two streaming devices in total are being registered - both with the same name but different IDs
If I set
enable_streamingtofalseTUI doesn't register new streaming device but then same happens to daemon mode.Describe the solution you'd like
I would like to use spotify_player in daemon mode akin to spotifyd and let it register as streaming device.
Then I would like to use spotify_player in TUI mode from time to time in order to control what is being played.
I tend to control spotify device with Raycast plugin and thus I don't need TUI to be opened 100% of the time.
I use spotify_player in --daemon mode so it registers itself as streaming device.
But from time to time when I want to change playlist I use TUI mode - I would expect TUI to NOT register another streaming device
I wonder if I miss some option to allow such setup or it isn't possible right now.
@aome510 commented on GitHub (Aug 28, 2023):
I don't think it's possible now to run TUI with streaming disabled beside setting
enable_streaming=false. Should be easy to add a new cli option to disable streaming when running the TUI. Maybe we can removeenable_streamingas a config option in favours of cli option as it's more flexible.