MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Changing icons of the modules Current Weather and Weather Forecast

    Scheduled Pinned Locked Moved Development
    301 Posts 30 Posters 1.3m Views 33 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M Offline
      Manu85 @sdetweil
      last edited by

      @sdetweil for calendar I got this return and the cursor did not return to cd ~/MagicMirror/ I just have two points at the bottom of the file

      pi@MagicMirror:~/MagicMirror $ git diff modules/default/calendar/calendar.js
      diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/cal                                                                                                                                                             endar.js
      index 2ef9ca9c..4f70a1e9 100644
      --- a/modules/default/calendar/calendar.js
      +++ b/modules/default/calendar/calendar.js
      @@ -1,6 +1,6 @@
       /* global cloneObject */
      
      -/* MagicMirror²
      +/* Magic Mirror
        * Module: Calendar
        *
        * By Michael Teeuw https://michaelteeuw.nl
      @@ -11,11 +11,8 @@ Module.register("calendar", {
              defaults: {
                      maximumEntries: 10, // Total Maximum Entries
                      maximumNumberOfDays: 365,
      -               limitDays: 0, // Limit the number of days shown, 0 = no limit
      -               pastDaysCount: 0,
                      displaySymbol: true,
      -               defaultSymbol: "calendar-alt", // Fontawesome Symbol see https:/                                                                                                                                                             /fontawesome.com/cheatsheet?from=io
      -               defaultSymbolClassName: "fas fa-fw fa-",
      :...skipping...
      diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js
      index 2ef9ca9c..4f70a1e9 100644
      --- a/modules/default/calendar/calendar.js
      +++ b/modules/default/calendar/calendar.js
      @@ -1,6 +1,6 @@
       /* global cloneObject */
      
      -/* MagicMirror²
      +/* Magic Mirror
        * Module: Calendar
        *
        * By Michael Teeuw https://michaelteeuw.nl
      @@ -11,11 +11,8 @@ Module.register("calendar", {
              defaults: {
                      maximumEntries: 10, // Total Maximum Entries
                      maximumNumberOfDays: 365,
      -               limitDays: 0, // Limit the number of days shown, 0 = no limit
      -               pastDaysCount: 0,
                      displaySymbol: true,
      -               defaultSymbol: "calendar-alt", // Fontawesome Symbol see https://fontawesome.com/cheatsheet?from=io
      -               defaultSymbolClassName: "fas fa-fw fa-",
      +               defaultSymbol: "calendar", // Fontawesome Symbol see https://fontawesome.com/cheatsheet?from=io
                      showLocation: false,
                      displayRepeatingCountTitle: false,
                      defaultRepeatingCountTitle: "",
      @@ -27,25 +24,23 @@ Module.register("calendar", {
                      maxEventTitleLines: 3,
                      fetchInterval: 5 * 60 * 1000, // Update every 5 minutes.
                      animationSpeed: 2000,
      -               fade: true,
      +               fade: false,
                      urgency: 7,
      -               timeFormat: "relative",
      -               dateFormat: "MMM Do",
      +               timeFormat: "absolute",
      +               dateFormat: "Do MMM HH:mm",
                      dateEndFormat: "LT",
      -               fullDayEventDateFormat: "MMM Do",
      +               fullDayEventDateFormat: "Do MMM",
                      showEnd: false,
                      getRelative: 6,
                      fadePoint: 0.25, // Start on 1/4th of the list.
                      hidePrivate: false,
                      hideOngoing: false,
      -               hideTime: false,
      -               showTimeToday: false,
                      colored: false,
      -               customEvents: [], // Array of {keyword: "", symbol: "", color: ""} where Keyword is a regexp and symbol/color are to be applied for matched
      +               coloredSymbolOnly: false,
                      tableClass: "small",
                      calendars: [
                              {
      -                               symbol: "calendar-alt",
      +                               symbol: "calendar",
                                      url: "https://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                              }
                      ],
      @@ -60,18 +55,9 @@ Module.register("calendar", {
                      excludedEvents: [],
                      sliceMultiDayEvents: false,
                      broadcastPastEvents: false,
      -               nextDaysRelative: false,
      :
      
      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @Manu85
        last edited by sdetweil

        @Manu85 all of those changes need to go in config.js
        (ps, THIS is why you don’t change our files… )
        and THIS is why test mode… so you have a chance to save your stuff.

        and AFTER these changes are in config.js , and custom.css
        AND you tested,
        THEN u restore the original file
        and TEST AGAIN… to make sure everything is right.

        THEN you can upgrade… and these files will all have been restored
        and won’t show in the changed list (I would run test mode over and over til these problems go away)

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        M 2 Replies Last reply Reply Quote 0
        • M Offline
          Manu85 @sdetweil
          last edited by

          @sdetweil yes, now thanks to you I understand the importance of js and css files

          1 Reply Last reply Reply Quote 0
          • M Offline
            Manu85 @sdetweil
            last edited by

            @sdetweil So I have to make the corrections manually in the files concerned by replacing the red lines with green lines, is that it?

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @Manu85
              last edited by

              @Manu85 you don’t have to correct the files… , just move the changes (green) to config.js and custom.css

              to restore a file to its release level content do

              ~/MagicMirror
              git checkout full_path_and_filename
              

              example

              git checkout css/main.css
              

              this will restore the file from the local (hidden) source repository

              dont do this til you have at least tested once for each file changed…

              and you MAY want to copy the affected file to a saved version (add .save to its filename)
              in case you missed one of the changes after you restore the file…

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              M 3 Replies Last reply Reply Quote 0
              • M Offline
                Manu85 @sdetweil
                last edited by

                @sdetweil I’m trying to understand and I’m having a lot of trouble, in the following example, I haven’t touched anything (I’m almost sure) and I have two lines, the first in red and the second in Green:
                -/* MagicMirror²
                +/* Magic Mirror
                I can’t put the green line in my js.config file, right?
                I’m sorry but I’m trying to understand

                diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/cal                                                                                                                                                             endar.js
                index 2ef9ca9c..4f70a1e9 100644
                --- a/modules/default/calendar/calendar.js
                +++ b/modules/default/calendar/calendar.js
                @@ -1,6 +1,6 @@
                 /* global cloneObject */
                
                -/* MagicMirror²
                +/* Magic Mirror
                  * Module: Calendar
                  *
                
                1 Reply Last reply Reply Quote 0
                • M Offline
                  Manu85 @sdetweil
                  last edited by

                  @sdetweil another example that bothers me

                  f56aa934-4612-44a9-8c45-5cbec03da546-image.png

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    Manu85 @sdetweil
                    last edited by

                    @sdetweil one last one for which I don’t know what to do either, thank you again for your help

                    6aff6a14-a3ca-454d-9cd3-12ec0f9aedee-image.png

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @Manu85
                      last edited by

                      @Manu85 not the -lock.json files , these are generated by npm install

                      the MagicMirror thing is inside a comment, so not important.

                      the default symbol, the green goes in config.js for the calendar module. don’t worry about the red

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      M 2 Replies Last reply Reply Quote 0
                      • M Offline
                        Manu85 @sdetweil
                        last edited by Manu85

                        @sdetweil ok, thank you for your answers, I’m going to do the weather.js and according to what you tell me I’m going to leave aside the 2 lock.json and then I’ll stop for this evening my brain is upside down , have a good day…and see you tomorrow if you want to continue helping me

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 19
                        • 20
                        • 21
                        • 22
                        • 23
                        • 30
                        • 31
                        • 21 / 31
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy