You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To enable lyric support, `spotify_player` needs to be built/installed with `lyric-finder` feature (**disabled** by default). To install the application with `lyric-finder` feature included run:
User can view lyric of the currently playing track by calling the `LyricPage` command to go the lyric page. To do this, `spotify_player` needs to be built with a `lyric-finder` feature.
@@ -228,15 +228,15 @@ Media control support is implemented using [MPRIS DBus](https://wiki.archlinux.o
228
228
To enable image rendering support, `spotify_player` needs to be built/installed with `image` feature (**disabled** by default). To install the application with `image` feature included, run:
229
229
230
230
```shell
231
-
cargo install --features image
231
+
cargo install spotify_player --features image
232
232
```
233
233
234
234
`spotify_player` supports rendering image in a full resolution if the application is run on either [Kitty](https://sw.kovidgoyal.net/kitty/graphics-protocol/) or [iTerm2](https://iterm2.com/documentation-images.html). Otherwise, the image will be displayed as [block characters](https://en.wikipedia.org/wiki/Block_Elements).
235
235
236
236
`spotify_player` also supports rendering images with `sixel` behind `sixel` feature flag, which also enables `image` feature:
237
237
238
238
```shell
239
-
cargo install --features sixel
239
+
cargo install spotify_player --features sixel
240
240
```
241
241
242
242
**Notes**:
@@ -267,7 +267,7 @@ Examples of image rendering:
267
267
To enable desktop notification support, `spotify_player` needs to be built/installed with `notify` feature (**disabled** by default). To install the application with `notify` feature included, run:
268
268
269
269
```shell
270
-
cargo install --features notify
270
+
cargo install spotify_player --features notify
271
271
```
272
272
273
273
**Note**: the notification support in `MacOS` and `Windows` are quite restricted compared to `Linux`.
0 commit comments