I want to have a world clock function on my bot.
It should return the current time in some major cities around the world. Like New York, London, Sydney etc.

I've started by creating this little alias:
Code:
alias world-clock {
  var %amsterdam = $time(HH:nn:ss)
  echo -a 05Amsterdam, NL:07 %amsterdam
}

But I'm already stuck when I need to calculate another locations time.

Does anyone already have something like this?
Or what would be a fancy way of making this?

Thanks in advance!