Files
Hyprcachy/omarchy/scripts/omarchy-webapp-handler-hey
2026-01-04 20:49:31 +01:00

12 lines
246 B
Bash
Executable File

#!/bin/bash
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 omarchy-launch-webapp "$web_url"