Jump to content

Scooter

Member
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Scooter

  1. I resolved this problem myself but for anybody who came here to find the answer. add /usr/local/bin in front of icalbuddy cuz $PATH doesn't have have that
  2. Follow up: I turned on debug mode (didn't know it existed) and i get this. [19:59:33.295] STDERR: Class[Run Script] /Users/scooter/Library/Caches/com.runningwithcrayons.Alfred/Workflow Scripts/07353464-1632-44BA-AD46-F03AC02855FA:1: command not found: icalbuddy
  3. Hello. I'm trying to open Zoom meeting URL that is in my iCalendar using 'Run Script' in Workflow. I am using ical-buddy for the purpose. I wrote the code below to select my "School" calendar, get some URL in it (which is either Zoom or Discord in my case so apologies for a lazy regex), and open it with Chrome. url=$(icalbuddy -ic 'School' eventsToday | egrep -o 'https:\/\/.*') && open -a "Google Chrome" $url If I paste this straight to terminal, it works perfectly. However, once I put this in 'Run Script' object in the Workflow that I am working on, it would not open the desired link. If I hard-code URL like below, it would open the link, so I suppose it is the problem with ical-buddy and grepping the link. url='https://www.google.com' && open -a "Google Chrome" $url I would really appreciate any insight. Thank you. P.S. I have /bin/zsh as Language
×
×
  • Create New...