feat: add global keybind to like/dislike currently playing track#215
Merged
Conversation
Adds a configurable global keybinding (F by default) to like/unlike the currently playing track from any screen. Complements the existing context-specific 's' key. - Default keybinding: F (for Favorite) - Configurable in config.yml as 'like_track' - Respects input mode (doesn't intercept when typing in search) - Added unit tests for the new hotkey - Updated CHANGELOG.md
42660cb to
229a5f4
Compare
Owner
|
@all-contributors add @shilicioo for code |
Contributor
|
I've put up a pull request to add @shilicioo! 🎉 |
LargeModGames
added a commit
that referenced
this pull request
Apr 16, 2026
Adds @shilicioo as a contributor for code. This was requested by LargeModGames [in this comment](#215 (comment)) [skip ci]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #214
Adds a global
Fkeybinding to like/unlike the currently playing track from anywhere. Right now you can only like tracks usingson specific screens, but if you're browsing albums or searching and want to quickly like what's playing, you had to navigate back. Now just hit 'F'.Default is
F(for "Favorite") but configurable in config.yml aslike_track.Testing
Built and tested with:
cargo run --no-default-features --features telemetry
cargo test --no-default-features --features telemetry global_shift_f
cargo clippy --no-default-features --features telemetry -- -D warnings
Tested manually on Home, Album, Artist, Search, and Playlist screens. Heart icon updates correctly. The F key types normally in search input (doesn't trigger the hotkey). Existing s key still works as before.
Additional notes
Updated CHANGELOG.md and added unit tests. Follows the same pattern as the existing W (add to playlist) global hotkey.