MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. ruskythegreat
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 10
    • Best 0
    • Controversial 0
    • Groups 0

    ruskythegreat

    @ruskythegreat

    0
    Reputation
    10
    Profile views
    10
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    ruskythegreat Unfollow Follow

    Latest posts made by ruskythegreat

    • RE: XKCD not updating

      @sdetweil Yup, there’s an option in both modules.
      In DailyXKCD:
      randomComic Set to true, if you want to see a random comic on days, when there is no new comic.

      In MMM-XKCD there’s also an alwaysRandom option:
      randomComic bool false Display a random comic, where no new comic is available.
      alwaysRandom bool false If you always want to see a random comic, even on days where a new comic is available. Note: Only effective if randomComic is set to true.

      I’m currently running DailyXKCD, so If I’m reading that right, my config has updateInterval set to 3600000 which is 1h, I should get a new comic every hour (for testing!).

      posted in Troubleshooting
      R
      ruskythegreat
    • XKCD not updating

      So I’ve tried both the DailyXKCD and MMM-XKCD but I can’t get either to update. They will refresh if I restart MM though.
      This is my current extract: -

               module: 'DailyXKCD',
              position: 'top_right',
              config: {
                  updateInterval: 3600000,
                  grayScale: false,
                  invertColors: true,
                  limitComicWidth: 400,
                  limitComicHeight: 0,
                  randomComic: true,
                  showTitle: true,
                  }
      

      Any ideas please?

      posted in Troubleshooting
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil It doesn’t work from Chrome 95.0.4638.54

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil No change 😢

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil
      Sorry, I did try that but forgot to update the post!
      It currently reads: -
      autoplayPolicy: “no-user-gesture-required”
      But still doesn’t autoplay

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil Thanks for all your help with this.
      It’s still not autoplaying 😞
      I tried with the autoplayPolicy with the no-user-gesture-required so: -
      autoplayPolicy: no-user-gesture-required,

      C&P to eliminate typos!

      So now the whole webpreferences entry reads: -

                  webPreferences: {
                          autoplayPolicy: no-user-gesture-required,
                          contextIsolation: true,
                          nodeIntegration: false,
                          zoomFactor: config.zoom
                  },
      

      But MM doesn’t start!

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil No, Sorry, I’m not familiar with the webPreferences object param Can I trouble you to ELI5 🙂

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil I just downgraded to 13.5.1 but still no auto play.

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      @sdetweil I did run npm install electron@latest but yes, I am running MM 2.17.1

      posted in Education
      R
      ruskythegreat
    • RE: MMM-EARTH-Live & MMM-ISS-Live

      Can anyone help please, I can’t get the feed to autoplay with Electron 15.3.0 even after adding the following
      app.commandLine.appendSwitch(‘autoplay-policy’, ‘no-user-gesture-required’);
      This is how the line looks in electron.js

      function createWindow() {
      app.commandLine.appendSwitch(‘autoplay-policy’, ‘no-user-gesture-required’);
      let electronSwitchesDefaults = [“autoplay-policy”, “no-user-gesture-required”];
      app.commandLine.appendSwitch(…new Set(electronSwitchesDefaults, config.electronSwitches));
      let electronOptionsDefaults = {

      posted in Education
      R
      ruskythegreat