Files
libreoffice/shell/source/unix/misc/tde-open-url.sh
Norbert Thiebaud 07b3d083b4 TDE integration
Change-Id: I6f468005c8d8d99d9251a9c4fe4629b98bc4aa5e
2012-05-14 20:09:41 -05:00

11 lines
159 B
Bash

#!/bin/sh
# special handling for mailto: uris
if echo $1 | grep '^mailto:' > /dev/null; then
kmailservice "$1" &
else
kfmclient openURL "$1" &
fi
exit 0