aome510 / spotify-player

A Spotify player in the terminal with full feature parity
MIT License
3.45k stars 149 forks source link

Bigger text size for playback pane. #486

Closed plasmoduck closed 2 months ago

plasmoduck commented 3 months ago

Is there a way to increase the font size in the playback area whilst keeping the same smaller font size for the rest of the program?

aome510 commented 2 months ago

No I don't think it's possible. AFAICT, the ratatui library spotify_player uses for rendering doesn't support changing the terminal's font size.

Maybe you can raise this to ratatui team instead to see if they can add such feature.

joshka commented 2 months ago

The terminal font-size is what it is. That's not something a terminal library can control as they render characters to cells, not pixel. I wrote a tui-big-text crate for using 8x8, 4x4 etc. cells to write to the display to get around this a little, but that might be too big for this.