mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #527] Daemon mode: Is there a way to quit daemon mode ? More documentaion is needed #1237
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#1237
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 @armfem on GitHub (Jul 31, 2024).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/527
Is your feature already implemented in the latest
master?I've been using
spotify-playerfor a while. Lately, I started using daemon mode, which works as a charm, thanks for the implementation. Nevertheless I have some questions which are not given in the README file, I tried to read the code but quite note fluent in rust; therefore choose rather to open a Issue.Is your feature request related to a problem? Please describe.
The problem is global for daemon usage. I will like to know how to stop the daemon (I do not know if several daemons can be started?), where the logs of the application can be found, and usual daemon administration stuff. If I'm pointed to the information maybe I could help write the documentation for :)
Describe the solution you'd like
The ideal solution will be to have all this documented on the README file.
Great project, so practical and nice 🥇
@aome510 commented on GitHub (Jul 31, 2024):
spotify_playerdoesn't provide a way to stop a running daemon. The more correct way would be you kill the process yourself withkillor other related commands as an app instance should be self-contained without any knowledge about running instances.@armfem commented on GitHub (Jul 31, 2024):
Ok, I added an aliase in case you want to add it to the documentation to close it easily
alias spot_kill='kill $(pidof spotify_player)'Thanks for the answer :)