#!/usr/bin/env python2.5
# -*- coding: utf-8 -*-
# $Id: smscon-editor 38 2011-12-18 11:01:16Z saturn $

## This is a simple startup script for SMSCON-Editor

##TODO: add a startup window instead of a notification.

if __name__ == "__main__":
    import os
    os.system(  'dbus-send --type=method_call --dest=org.freedesktop.Notifications' \
                ' /org/freedesktop/Notifications org.freedesktop.Notifications.SystemNoteInfoprint' \
                ' string:"SMSCON Editor is coming up, please wait..."')

from smsconEditorMain import *
if __name__ == "__main__":
    smsconEditorMain()  