mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #128] customization of tui #993
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#993
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 @sewnie on GitHub (Feb 12, 2023).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/128
Is it possible that the rust TUI libraries used by Spotify_player can move the current 'widgets'? I would love to remove the borders and move the progress bar at the bottom. And to disable certain text as it can get very cluttered.
Another thing is to change the text or icons to have a progress bar similar to musikcube.
Thanks.
@aome510 commented on GitHub (Feb 12, 2023):
By moving the widgets, do you mean re-ordering the app's layout? Removing borders can be easily added as a config option, layout re-ordering is not as trivial as a large part of UI constructing codes involves fixed layout. Flexible layout can be implemented but I don't have any plans to do it in the near future.
tuionly supports two types of progress barsGaugeandLineGague.Gaugeis what we currently have inspotify-player. Changing toLineGaugewill make it look as follows:which seems to be pretty close to that of musikcube.
@sewnie commented on GitHub (Feb 12, 2023):
Yes.
@aome510 commented on GitHub (Feb 12, 2023):
:'( well technically, if all you need is to move the playback block to the bottom, it should be easy to implement.
By playback block, I mean this whole thing

@sewnie commented on GitHub (Feb 12, 2023):
yes thats what i mean, the whole playblock block thing thingy to be at the botom yes yes yes
@aome510 commented on GitHub (Feb 14, 2023):
@apprehensions you should now be able to move the playback window's position to the bottom by changing the
playback_positionconfig option toBottom.@sewnie commented on GitHub (Feb 22, 2023):
how do i use this
LineGaguething though.@aome510 commented on GitHub (Feb 22, 2023):
Oh, I missed that. Will implement in a follow-up PR
@sewnie commented on GitHub (Feb 22, 2023):
thanks ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️
@aome510 commented on GitHub (Feb 22, 2023):
updated TODO:
@sewnie commented on GitHub (Feb 25, 2023):
btw, is it possible that when the
LineGaugesupport comes out, can the icon forplayandpausebe moved there just like in the format support?@aome510 commented on GitHub (Feb 26, 2023):
do you mean moving it to be a part of the gauge? If yes, I'm afraid not. The play/pause icon is a part of
{track}indicating the track's playing status. Because you cannot interact with the icon (e.g by clicking), it's not a part of the progress bar.