MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. justjim1220
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 7
    • Followers 5
    • Topics 35
    • Posts 649
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Calendar Font Size

      @deroptiker86

      Always glad to help out!

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Calendar Font Size

      @DerOptiker86

      And, you can remove this entry in your custom.css…

      .calendar {
       width: 375px;
       font-size: 200px;
       line-height: 40px;
      }
      

      :upside-down_face:

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Calendar Font Size

      @DerOptiker86

      OK, add the following to your config.js…

      tableClass: "large",
      

      like this…

      {
          module: "calendar",
          header: "iCloud Calendar",
          position: "top_center",
          config: {
              tableClass: "large",
      	calendars: [
      	    {
      	        symbol: "calendar-check-o ",
      		url: " "
      	    }
      	]
          }
      },
      

      you can change a lot of the defaults in the config…

      defaults: {
      		maximumEntries: 10, // Total Maximum Entries
      		maximumNumberOfDays: 365,
      		displaySymbol: true,
      		defaultSymbol: "calendar-alt", // Fontawesome Symbol see http://fontawesome.io/cheatsheet/
      		displayRepeatingCountTitle: false,
      		defaultRepeatingCountTitle: "",
      		maxTitleLength: 50,
      		wrapEvents: false, // wrap events to multiple lines breaking at maxTitleLength
      		fetchInterval: 30 * 60 * 1000, // Update every 30 minutes.
      		animationSpeed: 2000,
      		fade: false,
      		urgency: 7,
      		timeFormat: "relative",
      		dateFormat: "MMM Do",
      		fullDayEventDateFormat: "MMM Do",
      		getRelative: 6,
      		fadePoint: 0.25, // Start on 1/4th of the list.
      		hidePrivate: false,
      		hideOngoing: false,
      		colored: true,
      		coloredSymbolOnly: true,
      		tableClass: "large",
      		calendars: [
      			{
      				symbol: "calendar",
      				url: "http://www.calendarlabs.com/templates/ical/US-Holidays.ics",
      			},
      		],
      		titleReplace: {
      			"De verjaardag van ": "",
      			"'s birthday": ""
      		},
      		broadcastEvents: true,
      		excludedEvents: []
      	},
      

      I hope this is what you’re looking for. :winking_face:

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Calendar Font Size

      @deroptiker86

      Hmmm, let me play with it on my end.
      I’ll be right back in a few minutes.

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Calendar Font Size

      @deroptiker86

      Like this…

      .calendar {
       width: 375px;
      font-size: 2em;
      line-height: 2.5em;
      }
      

      OR…

      .calendar {
       width: 375px;
      font-size: 35px;
      line-height: 40px;
      }
      

      And you are missing the ‘;’ after ‘width: 375px’

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Calendar Font Size

      @deroptiker86 said in Calendar Font Size:

      .calendar {
      width: 375px
      }

      Add the following to the above…

      font-size: 2em;
      line-height: 2.5em;
      

      OR…

      font-size: 35px;
      line-height: 40px;
      

      Then, play with the numbers to get it how you want it.

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Real Time ECG

      @jchenaud

      If you get this figured out, I would be totally interested!!!

      posted in Development
      justjim1220J
      justjim1220
    • RE: I fried my Raspberry Pi 3 model b+...

      @madscientist

      eBay, Amazon, etc.
      Google it!

      I found this…

      https://www.st.com/content/st_com/en/search.html#q=BUZ GP 748-t=products-page=1

      Hope This Helps!

      posted in Hardware
      justjim1220J
      justjim1220
    • RE: Should I Customise the Modules or?

      @aussierob

      It just depends on the modules or how many modules you are planning to use…

      The modules that rely on pics and images, or video, or music, or streaming will need all the RAM and CPU you can get!

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: Calendar Font Size

      @deroptiker86

      Add this from the calendar.css to your custom.css…

      .calendar .symbol {
        padding-left: 0;
        padding-right: 10px;
        font-size: 80%;
        vertical-align: top;
      }
      
      .calendar .symbol span {
        display: inline-block;
        -ms-transform: translate(0, 2px); /* IE 9 */
        -webkit-transform: translate(0, 2px); /* Safari */
        transform: translate(0, 2px);
      }
      
      .calendar .title {
        padding-left: 0;
        padding-right: 0;
      }
      
      .calendar .time {
        padding-left: 30px;
        text-align: right;
        vertical-align: top;
      }
      

      then you can change the font size from there.

      Go to your clock.js file and look for this section…

      /************************************
      		 * Create wrappers for DIGITAL clock
      		 */
      
      		var dateWrapper = document.createElement("div");
      		var timeWrapper = document.createElement("div");
      		var secondsWrapper = document.createElement("sup");
      		var periodWrapper = document.createElement("span");
      		var weekWrapper = document.createElement("div")
      		// Style Wrappers
      		dateWrapper.className = "date normal xlarge bolder";
      		timeWrapper.className = "time bright large bolder";
      		secondsWrapper.className = "dimmed";
      		weekWrapper.className = "week dimmed medium"
      

      change the sizes of the date and time here. You can use the sizes as defined in your main.css file…

      .xsmall {
        font-size: 15px;
        line-height: 20px;
      }
      
      .small {
        font-size: 20px;
        line-height: 25px;
      }
      
      .medium {
        font-size: 30px;
        line-height: 35px;
      }
      
      .large {
        font-size: 65px;
        line-height: 65px;
      }
      
      .xlarge {
        font-size: 75px;
        line-height: 75px;
        letter-spacing: -3px;
      }
      

      Hope this helps!

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: How to change icons

      @lahim

      search fontawesome in google. It shows all the available icons.

      as far as changing the icon for your calendar, try this…

      in your config.js file, you need to add this line in the config section of your calendar…

      defaultSymbol: "calendar", // Fontawesome Symbol see http://fontawesome.io/cheatsheet/
      

      the following defaults cand be changed in this section as well…

      maximumEntries: 10, // Total Maximum Entries
      		maximumNumberOfDays: 365,
      		displaySymbol: true,
      		defaultSymbol: "calendar", // Fontawesome Symbol see http://fontawesome.io/cheatsheet/
      		displayRepeatingCountTitle: false,
      		defaultRepeatingCountTitle: "",
      		maxTitleLength: 25,
      		wrapEvents: false, // wrap events to multiple lines breaking at maxTitleLength
      		fetchInterval: 5 * 60 * 1000, // Update every 5 minutes.
      		animationSpeed: 2000,
      		fade: true,
      		urgency: 7,
      		timeFormat: "relative",
      		dateFormat: "MMM Do",
      		fullDayEventDateFormat: "MMM Do",
      		getRelative: 6,
      		fadePoint: 0.25, // Start on 1/4th of the list.
      		hidePrivate: false,
      		hideOngoing: false,
      		colored: false,
      		coloredSymbolOnly: false,
      		tableClass: "small",
      		calendars: [
      			{
      				symbol: "calendar",
      				url: "http://www.calendarlabs.com/templates/ical/US-Holidays.ics",
      			},
      		],
      		titleReplace: {
      			"De verjaardag van ": "",
      			"'s birthday": ""
      		},
      		broadcastEvents: true,
      		excludedEvents: []
      	},
      

      Feel free to ask if there is anything you don’t quite understand… :winking_face:

      posted in Custom CSS
      justjim1220J
      justjim1220
    • RE: Run MM on Ubuntu 16 VM

      @axled

      Thanks, that worked!!!
      :winking_face: :winking_face: :smiling_face: :smiling_face: :grinning_face_with_smiling_eyes: :grinning_face_with_smiling_eyes: :smiling_face_with_sunglasses: :smiling_face_with_sunglasses:

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: MMM-EARTH - config options

      @mykle1

      Actually, no, not for Lucy, That is well explained! :winking_face:

      I’m referring to the MMM-page-selector

      But I switched to MMM-pages which is way better explained and much easier to use!

      (Thanks @edward-shen for making it so easy and well explained!!! :winking_face: )

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-NOAA - Another Weather Module

      @fox

      I’m assuming with the upvote that it worked for you?

      posted in System
      justjim1220J
      justjim1220
    • RE: MMM-EARTH - config options

      @mykle1

      I am needing some assistance with setting up pages… cant seem to figure out what I’m doing wrong, keeps showing all the modules on the main page and it doesn’t change when I change the pages… maybe you could point me in the right direction???

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-Jnews

      @cowboysdude

      You know I just had to give you some sh** a little bit.

      It is a nice module, as I suspected, no way to get local news without making some changes to your code.

      I really like the set up though.

      Great job! (as usual!) :grinning_face: :grinning_face: :grinning_face:

      posted in Education
      justjim1220J
      justjim1220
    • RE: Run MM on Ubuntu 16 VM

      @mykle1

      Still getting this…

      0_1532318741939_Screenshot from 2018-07-22 23-03-01.png

      doesn’t matter if i’m in Ubuntu 16.04 OR 18.04
      and it doesn’t matter if I’m in home directory OR the root directory…

      is there a different way to run MM other than ‘npm start’?

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: MMM-NOAA - Another Weather Module

      @fox

      try adding the following in the config.js

      langTrans: "en",
      

      example…

      {
          module: 'MMM-NOAA',
          config: {
              langTrans: "en",
      	apiKey: "YOUR API KEY",
      	airKey: "YOUR API KEY"
      }
      },
      

      Not really sure it will work, but I will try it on mine in a little while and let you know if it does.
      If you try it before I get back on here, let me know if it did work or not.

      posted in System
      justjim1220J
      justjim1220
    • RE: MMM-Jnews

      @cowboysdude

      This might be a dumb question…
      Why am I needing the API for wunderground???

      posted in Education
      justjim1220J
      justjim1220
    • RE: MMM-Jnews

      @cowboysdude

      TOTALLY AWESOME!!!
      Hoping it works with my little podunk towns newspaper! BWAHAHAHAHA! :face_with_stuck-out_tongue_winking_eye: :face_with_stuck-out_tongue_winking_eye: :face_with_stuck-out_tongue_winking_eye:

      posted in Education
      justjim1220J
      justjim1220
    • 1
    • 2
    • 24
    • 25
    • 26
    • 27
    • 28
    • 32
    • 33
    • 26 / 33