Share Calendar on Board without Showing Radarr/Sonarr

I would like to be able to share a calendar on my public facing "default" board without having Radarr and Sonarr available to the users. I know that both are password protected but is there anyway to link Sonarr and Radarr to the calendar widget without having them added to the board as apps?
25 Replies
explosive parrot
You still need the apps for the connection (this might change in the future) But you can have the external link go nowhere, or loop back the the board; so that clicking it doesn't send them to radarr/sonarr. You can also bury them in a category or sideboard. For example could make a stealth app with the name, image, and external link of Google; but then have the internal link and integration set to sonarr/radarr
Tag
Tag4mo ago
Put them in a category and hide that category using CSS
jcsomerville
jcsomerville4mo ago
I'm not great with CSS. But I have slight general knowledge. I can look up how to hide something. I'm just not quite sure how to find exactly what needs hiding.
jcsomerville
jcsomerville4mo ago
No description
jcsomerville
jcsomerville4mo ago
I know it's somewhere in here.
Tag
Tag4mo ago
.dashboard-gs-category {
display: none
}
.dashboard-gs-category {
display: none
}
This will completely hide the category, so if you need to access it again, don't forget to remove the CSS
jcsomerville
jcsomerville4mo ago
Thank you! If I already have a category, will it also hide that one as well?
Tag
Tag4mo ago
Yep One second I'll make one for specific category names
jcsomerville
jcsomerville4mo ago
That would be amazing!
Tag
Tag4mo ago
Yeah it would, but CSS doesn't allow selector by text... Instead you can use the unique ID provided by mantine on the same line as the one for "dashboard-gs-category". There's a chance they are different between the categories. It's in the form of "mantine-d1a2ui", mantine followed by 6 alphanumeric characters
jcsomerville
jcsomerville4mo ago
Oh I found it. I have two. One I want to hide. I've identified the one I need to hide.
Tag
Tag4mo ago
Then in my css exemple you just need to replace dashboard-gs-category by that mantine UID Keeping the dot
jcsomerville
jcsomerville4mo ago
No need for dashboard-gs-category at all? Just the specific UID?
Tag
Tag4mo ago
Yep
jcsomerville
jcsomerville4mo ago
Hell yeah. I copied the whole line. I don't need div.mantine-em6nbc:nth-child(7) > div:nth-child(1) > div:nth-child(1)
Tag
Tag4mo ago
Do note, if your server or container restarts, there's a high chance that unique code will change and you'll have to update the CSS
jcsomerville
jcsomerville4mo ago
Just mantine-em6nbc? Oh good to know.
Tag
Tag4mo ago
Just that mantine-em6nbc
jcsomerville
jcsomerville4mo ago
.mantine-em6nbc { display: none } hid both categories. 😦
Tag
Tag4mo ago
Shame :/ Can't do much about it for now, will definitely keep it in mind when reworking the CSS attribution
jcsomerville
jcsomerville4mo ago
I appreciate it!
Tag
Tag4mo ago
Just use dashboard-gs-category in the mean time so you don't need to update it on restarts
jcsomerville
jcsomerville4mo ago
Yeah I'll do that. I don't really need the other category, so seems mine the way to go. I appreciate all the help!
Tag
Tag4mo ago
Wish I could have been able to provide a definitive solution ^^'
jcsomerville
jcsomerville4mo ago
No no, its alright. This will do for now.