Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. cbrooker
    C
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    cbrooker

    @cbrooker

    0
    Reputation
    4
    Posts
    944
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    cbrooker Follow

    Best posts made by cbrooker

    This user hasn't posted anything yet.

    Latest posts made by cbrooker

    • RE: MMM-Todoist

      Alternatively, you can add this to the bottom of the MMM-Todoist.css custom CSS file.

      .divTableCell:first-of-type {
          display: none;
      } 
      .divTableRow > div:nth-child(2) {
          display: none;
      }
      
      posted in Troubleshooting
      C
      cbrooker
    • RE: MMM-Todoist

      Hi All,

      I just saw this thread and think I can offer some assistance. I wrote and maintain the MMM-Todoist module.

      That space that you’re seeing is where the Todo Priority would be displayed if you set a priority.

      Like this (the red bar):
      9f14d8f5-5067-4de5-944a-9e44d60d449c-image.png

      If you have no need for that and want to remove the space the quickest “hack” you can do is:

      1. Open /modules/MMM-Todoist/MMM-Todoist.js
      2. Comment out these 2 lines:
      divRow.appendChild(this.addPriorityIndicatorCell(item));
      divRow.appendChild(this.addColumnSpacerCell());
      

      Line 592 and 593.

      1. Save and reload MagicMirror.
      2. Do a local commit (git commit -a)

      That will remove the space however, every time you update module you might have to deal with a merge conflict.

      More advanced:
      You could also fork the repo, clone the new repo into your modules folder make, the changes, commit, push. You could then pull the upstream changes when you wanted to update.

      posted in Troubleshooting
      C
      cbrooker
    • RE: MMM-Todoist - Your todoist tasks on your mirror

      Hey guys,

      Very sorry that I have been MIA. I’ve been really busy with work and haven’t been able to give this any attention. I see a number of bugs and improvements in the thread. If you could submit your improvements and changes as Pull Request to the github repo, I’ll merge them in and everyone can have them. If not, I’ll try to add them in soon.

      https://github.com/cbrooker/MMM-Todoist

      Thanks,
      Chris

      posted in Productivity
      C
      cbrooker
    • MMM-Todoist - Your todoist tasks on your mirror

      I really liked paviro’s Wunderlist Module but I use Todoist. So I create a Module based on his work to display your Todoist todos on your mirror. It’s still relatively rough and only supports filtering by a single project, but I’ll increase the functionality when I get some more time.

      https://github.com/cbrooker/MMM-Todoist

      posted in Productivity
      C
      cbrooker