A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Subcategories

  • Present your module and help other users on how to use it.

    1k Topics
    25k Posts
    BKeyportB
    @benhmin for once, ChatGPT put you on the right path. We’ve had this conversation before- the result is that it’s better to leave it CSS than overload the config. cheers
  • Need a module? Maybe someone is interested in coding it.

    1k Topics
    7k Posts
    S
    @Williamso the MMM-ImagesPhotos in full screen mode will adjust the sizes to keep the photo aspect ratio
  • Need help developing a module? You just found it!

    678 Topics
    5k Posts
    BKeyportB
    here’s how I did it. Set up SAMBA on the pi, and include a mapping to your photos drive (I wouldn’t recommend keeping them locally) magic mirror’s config, using MMM-Backgroundslideshow /* Magic Mirror Config by Brendan Keyport. */ /* Office - Certificate Display */ var config = { address: "0.0.0.0", port: 8082, // port is 8082 as I use a server/client style setup. ipWhitelist: [], language: "en", timeFormat: 12, units: "imperial", //logLevel: ["INFO", "LOG", "WARN", "ERROR", "DEBUG"], customCss: "css/custom3.css", modules: [ { module: 'MMM-BackgroundSlideshow', position: 'fullscreen_below', config: { imagePaths: ['<path to shared folder>'], transitionImages: true, randomizeImageOrder: true, showAllImagesBeforeRestart: true, //transitionSpeed: 0, gradient: [0], horizontalGradient: [0], backgroundSize: "contain" } } /*************** DO NOT EDIT BELOW ***************/ ] }; if (typeof module !== "undefined") { module.exports = config; } Easy as Pi.
  • You have a problem with a module? Ask for help.

    3k Topics
    20k Posts
    A
    Hi @sdetweil , Sorry for the delay and thanks for this info. We’ll test this module.
  • Default Modules

    Pinned
    11
    0 Votes
    11 Posts
    22k Views
    S
    @Oboudreaux submit a PR to the GitHub repo