MMM-OnSpotify icon indicating copy to clipboard operation
MMM-OnSpotify copied to clipboard

Is it possible to remove the album cover?

Open thudrox opened this issue 8 months ago • 4 comments

Is it possible to remove the album cover and only have track/album/artist, code etc? Think its demanding too much from my RP.

thudrox avatar Apr 14 '25 21:04 thudrox

You can try disabling all the animations: (or even disabling the color processing!)

{
    module: "MMM-OnSpotify",
    position: "bottom_right",
    config: {

        /* [...] */

        mediaAnimations: false,
        fadeAnimations: false,
        scrollAnimations: false,
        textAnimations: false,
        transitionAnimations: false,
        spotifyVectorAnimations: false,
    },
},

If its still too much or you dont want the album art you can add the following to your <MagicMirror>/css/custom.css

  .MMM-OnSpotify .ONSP-Custom .swappable {
    display: none !important; /* Hides the album/canvas */
  }

Fabrizz avatar Apr 15 '25 00:04 Fabrizz

Thank you so much! It successfully removed the album cover and its reading much smoother! However the animation disabling only gives me parsing errors when I try to add it to the config.js.

Any idea why this is? Thank you for the great module and response!

thudrox avatar Apr 15 '25 08:04 thudrox

Thats strange, do you have anything alse in the config? I will look into this

Fabrizz avatar Apr 15 '25 13:04 Fabrizz

I can disable everything here and it works.

Can you share your config? (maybe a missing comma before the animations, as if its a parsing error is a config issue)

Tx!

Fabrizz avatar Apr 27 '25 16:04 Fabrizz

Hi Fabrizzz,

Very possible. I got it to work by using the MMM-MagicRemote module!

thudrox avatar May 05 '25 08:05 thudrox