15 lines
500 B
Python
15 lines
500 B
Python
from PySide import QtGui
|
|
from util import curr_directory
|
|
# TODO: add sound notifications
|
|
# TODO: make app icon active
|
|
|
|
|
|
def tray_notification(title, text):
|
|
if QtGui.QSystemTrayIcon.isSystemTrayAvailable():
|
|
tray = QtGui.QSystemTrayIcon(QtGui.QIcon(curr_directory() + '/images/icon.png'))
|
|
tray.setContextMenu(QtGui.QMenu())
|
|
tray.show()
|
|
if len(text) > 30:
|
|
text = text[:27] + '...'
|
|
tray.showMessage(title, text, QtGui.QSystemTrayIcon.NoIcon, 3000)
|