#!/bin/sh -e
set -e

#DEBHELPER#

# Get OSSO environment variables (launchers, dbus bus, etc)
if [ -f /etc/osso-af-init/af-defines.sh ]; then
  source /etc/osso-af-init/af-defines.sh
fi

dbus-send --type=method_call --dest=org.freedesktop.Notifications \
    /org/freedesktop/Notifications \
    org.freedesktop.Notifications.SystemNoteInfoprint \
    string:"Stopping Automatic Skype Launcher.
This may close any Skype instance."

# sleep 2

exit 0
