this post was submitted on 01 Sep 2023
29 points (96.8% liked)

Selfhosted

39098 readers
461 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I'm looking for a google calendar replacement that isn't nextcloud, has a descent mobile app with widgets, and authentication built in. I've seen plenty of recommendations via search but i'd like to hear what you personally use and what you like about it.

top 21 comments
sorted by: hot top controversial new old
[–] Kalcifer@lemm.ee 12 points 1 year ago* (last edited 1 year ago) (1 children)

I use Nextcloud's Calendar to sync to other calendar apps over CalDAV.

[–] KelsonV@lemmy.world 7 points 1 year ago

Same. Thunderbird now has native support for CalDAV and I use DAVx5 to sync it with my Android devices.

[–] Treczoks@kbin.social 11 points 1 year ago (1 children)

I use "radicale" as calendar server for the family. Thunderbird can talkt to it directly, on Androidd, I use DAVX5 to sync them.

[–] conrad82@lemmy.world 1 points 1 year ago

I also use radicale.

For events with other people I use gmail or mailbox calendar though..

[–] tiwenty@jlai.lu 11 points 1 year ago (2 children)

I use Baikal, but it seems Nextcloud is a popular solution.

[–] observantTrapezium@lemmy.ca 5 points 1 year ago

Baikal is lean and great. I use it and sync to my Thunderbird (using the TbSync extension) and Android phone (using DAVx⁵).

[–] TCB13@lemmy.world 3 points 1 year ago (1 children)

+1 on Baikal, way better than Nextcloud except for invites. There are some details that don't work as expected with inviting people and changing invites afterwards.

[–] tiwenty@jlai.lu 0 points 1 year ago

Indeed it's not really invites-friendly. But what I like is that it's really light, and avoid cluttering my Nextcloud. My Nextcloud is just for files, syncing and sharing them. That's all, and that avoids a lot of headaches when backuping for instance.

[–] dalz@fedi.alsd.eu 10 points 1 year ago (1 children)

I use radicale, DAVx5 and Simple Calendar Pro. I tried to use GNOME Calendar on the desktop, but its caldav support is too buggy to be usable, and I ended up using the calendar on my phone only.

[–] zerodawn@leaf.dance 1 points 1 year ago (1 children)

This looks like a great fit for my use case, i'll dig into this more, thank you.

[–] Cyber@feddit.uk 2 points 1 year ago* (last edited 1 year ago)

+1 for this.

I have radicale running for the family and we use DavX and Simple Calendar too.

I personally also use Vivaldi's built in calendar and Outlook's CalDav Sync addin connected to radicale too - all works a treat

[–] Anafroj@sh.itjust.works 8 points 1 year ago (1 children)

I'm going to pass for the crazy person around, but so be it : cron.

Cron can be easily configured to send mails (MAILTO variable when using standard cron), provided sendmail is available on the system. If a command called by cron outputs anything, it will send a mail with the content, which is useful by itself to warn when something goes wrong with a cron task, but also allows to do things like this:

0 9 28 9 * echo birthday John

It's really easy to get used to the syntax, it's just going from more precise to less precise, so it's "minute, hour, day, month, *". The last one can usually be ignored (it's the day of the week, I must have used it twice in my life). So here, "0 9 28 9", you read it backward and it gives : September, 28th, 9:00. Piece of cake when you get a bit of practice. And cron is everywhere, so no need to install anything. Although, since I run it on my laptop, I use fcron, which has a nice feature to run ASAP tasks which should have ran is the computer was not shut down. This way, I never miss an alert.

I use it for recurring notes (like birthday, paperwork, house cleaning tasks, holidays, etc), but also as reminders of specific dates when I expect a delivery, have a meeting, etc. For the most important messages, I make it use a script that will make a destkop notification (with notify-send) and have a voice read the message (with mimic). And of course, I also use it to actually launch programs. :)

[–] DontNoodles@discuss.tchncs.de 3 points 1 year ago (1 children)

Sounds good for setting the events up and getting notifications part. A good calender would also let you see the upcoming events in week, month at a glance. Cron entries are non sorted lists. Is there a cron visualizer like they have visualizers for logs?

[–] Anafroj@sh.itjust.works 1 points 1 year ago* (last edited 1 year ago)

I organize my crontab by having group of tasks (the programs, the holidays, the housecleaning, etc). And of those groups, the events (the non recurring tasks) come last. So I just list the crontab (crontab -l) and the list of things to come print to the screen, that block being at the end of the file. It's hard to do better than a text file to list things. :)

I don't know if there is a program that lists like "what is coming this month" if you really want to filter out the rest, but it should be easy enough to write, given the format of cron rules:

crontab -l | grep '*' | awk '{print $4 "," $3 "," $2 "," $1 " " $0 }' | sort -n | grep -E "^$(date '+%-m')"
  • crontab -l : list the crontab
  • grep '*' : keeps only rules (removing blank lines and comments)
  • awk […] : print the whole line ($0), prepend by the 4th field (the month), the 3rd (the day), the 2nd (the hour) and the 1st (the minutes)
  • sort -n : sort everything numerically, so that all tasks are now in their execution date order (I made awk seperate the fields with a , character so it keeps sorting numerically past the first number)
  • date '+%-m : prints the current month, not zero padded (thanks to the '-')
  • grep -E '^date' : keep only lines which starts with the current month number

You put that in a script (like ~/bin/upcoming_events) and you're done. And then, you can call it from cron every monday get what's coming next mailed to you. :)

This could but refined further to display dates in a more friendly format. But as usual, Unix is your friend. :)

[–] fmstrat@lemmy.nowsci.com 3 points 1 year ago (1 children)

Nextcloud of course. And nothing beats the 1-day "week" view widget of Business Calendar Pro. Looks just like a desktop view. It has the best year view, too.

[–] Szwendacz@kbin.maciej.cloud 0 points 1 year ago (1 children)

Nextcloud is reall nice but if you are using many of its functions,. For just calendar it seem a bit to heavy, isn't it?

[–] fmstrat@lemmy.nowsci.com 1 points 1 year ago

Probably, but it's a surprisingly lightweight system. And if you are self hosting a calendar, it offers a lot of room for expansion when the time inevitability comes.

[–] oranki@sopuli.xyz 2 points 1 year ago

Even though you said "isn't Nextcloud", I'd still say it's perhaps the simplest solution.

You can disable most the other apps and set calendar as the landing page. If you don't use the other features, the resource usage is very low, just a cron job that does basically nothing. I don't think disabling the default apps has much effect on the footprint, by the way.

Calendar, contacts and notes are why I still self host nextcloud. Just remember to pay/donate to Davx5, they're one of the projects that need to keep running!

[–] schmurian@lsmu.schmurian.xyz 1 points 1 year ago
[–] poVoq@slrpnk.net 0 points 1 year ago

https://github.com/tchapi/davis/

Is a good lightweight option, but I use Nextcloud.

[–] knoc_off@lemm.ee -1 points 1 year ago

Check here: https://awesome-selfhosted.net/

And do a ctrl-f and look for calendar