mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #67] Play/Pause icon #16
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#16
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 @overtoneblue on GitHub (Jul 30, 2022).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/67
Originally assigned to: @aome510 on GitHub.
I noticed recently spotify-player switched to this icon for me? Im not sure if im able to configure an option to switch the icon or not, just noticed it one day. I'll keep digging to see if I can change it but figured I'd ask to see if theres an easy fix.

@aome510 commented on GitHub (Jul 30, 2022):
Unfortunately, it’s not configurable atm. I can add a quick change to allow configure play/pause icons
@aome510 commented on GitHub (Jul 30, 2022):
Should be fixed by #68. Can you try the latest build of
masterand confirm that the icons are configurable by changing the app.toml file?@overtoneblue commented on GitHub (Jul 30, 2022):
yeah, im a bit unsure how to use #68 specifically. Is there a way to use it through the aur?
@aome510 commented on GitHub (Jul 31, 2022):
Hi @Selmer443, do you happen to have Rust+Cargo installed in your system? If yes, you can test the latest build on
mainby building one:.config/spotify-player/app.tomlconfig file and configure the play/pause icons:Right now,
auronly supports the latest release not the latest development change. Either you need to wait for the new release or add a newspotify-player-nightlypackage. I don't have access to Arch laptop, so I cannot help on this@overtoneblue commented on GitHub (Jul 31, 2022):
works perfectly for me, just curious if I wanted to have easy access to running spotify-player like I was with the aur package making the command "spotify-player" available globally. Would I run a separate cargo command ? or will I have to navigate to the spotify-player folder each time i'd like to start the program. --Just to clarify, the icons are entirely configurable now and I have tested it with multiple icons.
@aome510 commented on GitHub (Jul 31, 2022):
Great to hear that.
cargo runshould produce a binary intarget/debug/spotify_player. You can link that binary to a folder in your path, e.gNote that
cargo runis a debug run/build, so if you want your app to run fast, you can build areleaseversion. Same steps can be used here@overtoneblue commented on GitHub (Aug 5, 2022):
thanks so much! sorry it took me a bit to get back to you. Only been using linux for a bit now but your comments are super helpful, ill make sure to read up more on linking things and use your method for now.