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

Posts

Recent Best Controversial
  • RE: Update says to "commit your changes or stash them before you can merge." ?

    Ok, these are done and no longer an issue, hurrah!:grinning:

        css/main.css
        modules/default/compliments/compliments.js
        modules/default/newsfeed/newsfeed.js
        modules/default/weatherforecast/weatherforecast.js
    

    Can’t get

        modules/default/calendar/calendar.js
    

    into config.js though.

    			module: 'calendar',
    			header: 'Calendar',
    			position: 'top_left',
    			config: {
                        maximumEntries: 8, // Total Maximum Entries
                        maximumNumberOfDays: 365,
                        displaySymbol: true,
                        defaultSymbol: "calendar", // Fontawesome Symbol see http://fontawesome.io/cheatsheet/
                        displayRepeatingCountTitle: false,
                        defaultRepeatingCountTitle: "",
                        maxTitleLength: 25,
                        fetchInterval: 5 * 60 * 1000, // Update every 5 minutes.
                        animationSpeed: 2000,
                        fade: true,
                        urgency: 0,
                        timeFormat: "absolute",
                        dateFormat: "ddd Do MMMM",
                        getRelative: 2,
                        fadePoint: 0.25, // Start on 1/4th of the list.
                        hidePrivate: false,
                        calendars: [
    					{
    						symbol: 'calendar-check-o ',
    						url: 'https://calendar.google.com/calendar/ical/PRIVATE_KEY/basic.ics'
    					}
    				]
    			}
    		},
    		{
    			module: 'calendar',
    			header: 'Binday',
    			position: 'bottom_left',
    			config: {
                        maximumEntries: 8, // Total Maximum Entries
                        maximumNumberOfDays: 365,
                        displaySymbol: true,
                        defaultSymbol: "calendar", // Fontawesome Symbol see http://fontawesome.io/cheatsheet/
                        displayRepeatingCountTitle: false,
                        defaultRepeatingCountTitle: "",
                        maxTitleLength: 25,
                        fetchInterval: 5 * 60 * 1000, // Update every 5 minutes.
                        animationSpeed: 2000,
                        fade: true,
                        urgency: 0,
                        timeFormat: "absolute",
                        dateFormat: "ddd Do MMMM",
                        getRelative: 2,
                        fadePoint: 0.25, // Start on 1/4th of the list.
                        hidePrivate: false,
                        calendars: [
                        {
    						symbol: 'pagelines ',
    						url: 'https://calendar.google.com/calendar/ical/PRIVATE_KEY/basic.ics'
    					}
    				]
                    titleReplace: {
                    //	"'s birthday": "",
                    //	"Recycling": "Bins",
                        "Red Bin": "Red and Black Bins",
                        "Green Bin": "Green and Black Bins" 
                    }
    			}
    		},  
    

    What have I missed?!

    Thanks.

    posted in Troubleshooting
    R
    Richard238
    Apr 4, 2017, 10:14 AM
  • RE: Update says to "commit your changes or stash them before you can merge." ?

    Lost and confused already.

    How much of calendar.js needs to be copied to config,js?

    Thanks

    posted in Troubleshooting
    R
    Richard238
    Apr 3, 2017, 4:14 PM
  • RE: Update says to "commit your changes or stash them before you can merge." ?

    @yawns Ok, thanks. I’ve some work to do there then!

    posted in Troubleshooting
    R
    Richard238
    Apr 3, 2017, 4:04 PM
  • RE: Update says to "commit your changes or stash them before you can merge." ?

    @yawns
    I don’t quite understand.

    Main.css - I don’t know what I’ve changed, I’ll have a look later.
    compliments.js Well, OK, I can re-write those.

    calendar.js / newsfeed.js / weatherforecast.js
    These have to be changed to pull in your calendar, your choice of news, your choice of weather, don’t they?

    posted in Troubleshooting
    R
    Richard238
    Apr 3, 2017, 2:53 PM
  • Update says to "commit your changes or stash them before you can merge." ?
    pi@raspberrypi:~/MagicMirror $ git pull && npm install
    Updating 8010e62..1a2b4f8
    error: Your local changes to the following files would be overwritten by merge:
            css/main.css
            modules/default/calendar/calendar.js
            modules/default/compliments/compliments.js
            modules/default/newsfeed/newsfeed.js
            modules/default/weatherforecast/weatherforecast.js
    Please, commit your changes or stash them before you can merge.
    Aborting
    

    How do I do this, please?

    posted in Troubleshooting
    R
    Richard238
    Apr 3, 2017, 2:28 PM
  • RE: AM/PM times shown even with timeFormat: 24,

    Same issue here, config is set to 24, yet calendar shows 10:35pm.

    Google calendar shows 22:35, why is MM showing PM rather than 24hr?

    Thank you.

    posted in Troubleshooting
    R
    Richard238
    Mar 25, 2017, 12:44 PM
  • Word dependant text color change.

    Calendar titleReplace shows:
    red car due service
    blue car due service

    How could they be colored according to their text, I guess through custom.css?

    Thanks.

    posted in Troubleshooting
    R
    Richard238
    Mar 22, 2017, 11:20 AM
  • RE: Calendar Module: Multiple Icons.

    @strawberry-3.141 What do I do with that, how do I use it?
    Thanks.

    posted in Troubleshooting
    R
    Richard238
    Mar 16, 2017, 10:53 PM
  • RE: Calendar Module: Multiple Icons.

    Sure, it’s in /home/pi/MagicMirror/css/custom.css

     * Changes to this files will be ignored by GIT. *
     *****************************************************/
    
     body {
     	
     }
    
     
     .fa.fa-calendar-check-o {
      color: #00d2ff; /* Blue */
    }
    
     .fa.fa-trash-o  {
      color: #C97F7F; /* Brown */
    
    posted in Troubleshooting
    R
    Richard238
    Mar 15, 2017, 7:14 PM
  • RE: Calendar Module: Multiple Icons.

    I’ve got a coloured trash-o icon against each entry in my binday calendar, but I’d like two, one per bin.

    posted in Troubleshooting
    R
    Richard238
    Mar 15, 2017, 6:17 PM
  • 1
  • 2
  • 19
  • 20
  • 21
  • 22
  • 23
  • 21 / 23
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