mirror of
https://github.com/Rigellute/spotify-tui.git
synced 2026-04-27 08:35:58 +03:00
[GH-ISSUE #689] Default volume #279
Labels
No labels
bug
enhancement
good first issue
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-tui#279
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 @Pomegranate123 on GitHub (Dec 29, 2020).
Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/689
Every time I restart my computer, the volume is at 100%, which is way too loud. I don't want to lower the volume every time I restart (because it's quite slow), and I also don't want to lower my master volume just for this app. Is there a way to specify a default volume it loads on startup?
@OrangeFran commented on GitHub (Dec 30, 2020):
I'm not aware of that feature. But it should be easy to implement.
I see two options: saving the last used volume or letting the user specify the volume in the config file.
What do you prefer?
@Pomegranate123 commented on GitHub (Dec 30, 2020):
I'd say remember the last used volume, that would save the hassle of going to the config file whenever you want to change it.
@OrangeFran commented on GitHub (Dec 30, 2020):
Do you want to work on it or should I pick it up? It won't be hard.
@Pomegranate123 commented on GitHub (Dec 30, 2020):
I've never used rust and I'm unfamiliar with the codebase, so you go ahead and do it :)
@OrangeFran commented on GitHub (Dec 30, 2020):
It seems that this setting is device specific. I don't think it makes sense to implement this in
spotify-tui.Hava a look at
spotifyd, they have aninitial_volumeoption that allows you to change the initial volume.@Pomegranate123 commented on GitHub (Dec 30, 2020):
Thank you! I'll look into it.
@Rigellute commented on GitHub (Jan 6, 2021):
Indeed, this sounds like an issue with the playback device itself. For example, the official spotify client "remembers" the correct volume setting after restarts.
@Pomegranate123 did setting
initial_volumeon forspotifydwork for you?