Is there a way to make it taller?
It depends on how big the font size is and how many events will be shown in one cell.
These properties are related to that.
Of course you can adjust more details with CSS overriding.
Is there a way to make it taller?
It depends on how big the font size is and how many events will be shown in one cell.
These properties are related to that.
Of course you can adjust more details with CSS overriding.
XXX_center
is not a good place to use CX3 module. center
position too narrow and doesn’t have a fixed width because it is decided by left
and right
width by calculation. Especially in the vertical screen? Terrible. You may have only around 1000px(considering the gap of margin) width of the vertical screen, and that number should be shared with another region, left
and right
. Usually, a pretty side region would have over 300px, so your center
region will have only 300~400px. It is not enough for 7 days cells of the calendar.
I recommend bottom_bar
.
The CX3 module doesn’t handle ICS data directly. You may need the default calendar module as a calendar events provider. You also need to set the `broadcastEvents’- related properties properly.
It seems you already did CSS modification; it’s your taste. I’ll not mention about it. Anyway, I cannot agree that the default CSS would be awful at all.
@brentmatthews
Ah sorry. It was not about you. I had confusing @srobison62 and you.
@brentmatthews
So… what you expected and what you got really that looked hideous?
@caw
I cannot say anything without the full log. But at the first execution, ics would not be written yet, (calendar module is so fast than CalDAV’s connection and parsing) so just wait for the next cycle to finish serving, or just stop and rerun MM. From the second execution, ics will be served.
[ERROR] Error: EACCES: permission denied, open ‘/opt/magic_mirror/modules/MMM-CalDAV/service/.SYNOLOGY_Simon.ics’
I’m not familiar with the Docker setting. Anyway, it seems to be a permission issue. The docker container creation and execution might be performed by different accounts. Or you may need proper permission for those files or directories. However, I have no idea of Docker environment, so that’s all I can say.
@caw said in MMM-CalDAV:
{
module :“MMM-CalDAV”,
config: {
servers: [
{
envPrefix: “SYNOLOGY_”,
serverUrl: “https://myownsynologyadress.de/caldav/”,
],
},
},
And you’ve missed a closing brace in your code.
{
module :"MMM-CalDAV",
config: {
servers: [
{
envPrefix: "SYNOLOGY_",
serverUrl: "https://myownsynologyadress.de/caldav/",
}, // <-- HERE
],
},
},
@caw said in MMM-CalDAV:
following error occurs
???
I cannot understand the context. What did you do? The image seems like that something on the browser.
Does your MagicMirror is executed on the Synology NAS with Docker?