- Enable programs.uwsm for session management. - Improve SDDM theme session detection logic to be case-insensitive and more robust. - Perform a global cleanup of 'Nnomarchy' and 'org.nnomarchy' typos across all scripts and configurations.
12 lines
247 B
Bash
Executable File
12 lines
247 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 nomarchy-launch-webapp "$web_url"
|