16 lines
331 B
Bash
16 lines
331 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# archypr:summary=Open HEY webmail and translate mailto links
|
||
|
|
# archypr:args=[url]
|
||
|
|
|
||
|
|
url="$1"
|
||
|
|
web_url="https://app.hey.com"
|
||
|
|
|
||
|
|
# Handle mailto: URLs
|
||
|
|
if [[ $url =~ ^mailto: ]]; then
|
||
|
|
email=$(echo "$url" | sed 's/mailto://')
|
||
|
|
web_url="https://app.hey.com/messages/new?to=$email"
|
||
|
|
fi
|
||
|
|
|
||
|
|
exec archypr-launch-webapp "$web_url"
|