/indra/newview/linux_tools/register_secondlifeprotocol.sh
https://bitbucket.org/lindenlab/viewer-beta/ · Shell · 48 lines · 35 code · 7 blank · 6 comment · 9 complexity · b3eaf68724b6585adeb2d9f7752f3fe4 MD5 · raw file
- #!/bin/bash
- # Register a protocol handler (default: handle_secondlifeprotocol.sh) for
- # URLs of the form secondlife://...
- #
- HANDLER="$1"
- RUN_PATH=`dirname "$0" || echo .`
- cd "${RUN_PATH}/.."
- if [ -z "$HANDLER" ]; then
- HANDLER=`pwd`/etc/handle_secondlifeprotocol.sh
- fi
- # Register handler for GNOME-aware apps
- LLGCONFTOOL2=gconftool-2
- if which ${LLGCONFTOOL2} >/dev/null; then
- (${LLGCONFTOOL2} -s -t string /desktop/gnome/url-handlers/secondlife/command "${HANDLER} \"%s\"" && ${LLGCONFTOOL2} -s -t bool /desktop/gnome/url-handlers/secondlife/enabled true) || echo Warning: Did not register secondlife:// handler with GNOME: ${LLGCONFTOOL2} failed.
- else
- echo Warning: Did not register secondlife:// handler with GNOME: ${LLGCONFTOOL2} not found.
- fi
- # Register handler for KDE-aware apps
- for LLKDECONFIG in kde-config kde4-config; do
- if [ `which $LLKDECONFIG` ]; then
- LLKDEPROTODIR=`$LLKDECONFIG --path services | cut -d ':' -f 1`
- if [ -d "$LLKDEPROTODIR" ]; then
- LLKDEPROTOFILE=${LLKDEPROTODIR}/secondlife.protocol
- cat > ${LLKDEPROTOFILE} <<EOF || echo Warning: Did not register secondlife:// handler with KDE: Could not write ${LLKDEPROTOFILE}
- [Protocol]
- exec=${HANDLER} '%u'
- protocol=secondlife
- input=none
- output=none
- helper=true
- listing=
- reading=false
- writing=false
- makedir=false
- deleting=false
- EOF
- else
- echo Warning: Did not register secondlife:// handler with KDE: Directory $LLKDEPROTODIR does not exist.
- fi
- fi
- done