notifications + callbacks update
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
from PySide import QtGui, QtCore
|
||||
from PySide import QtGui
|
||||
# TODO: add sound notifications
|
||||
# TODO: add reaction om mouse move
|
||||
|
||||
|
||||
def tray_notification(title, text):
|
||||
@ -7,4 +8,6 @@ def tray_notification(title, text):
|
||||
tray = QtGui.QSystemTrayIcon()
|
||||
tray.setContextMenu(QtGui.QMenu())
|
||||
tray.show()
|
||||
tray.showMessage(title, text)
|
||||
if len(text) > 50:
|
||||
text = text[:50] + '...'
|
||||
tray.showMessage(title, text, QtGui.QSystemTrayIcon.NoIcon, 4000)
|
||||
|
Reference in New Issue
Block a user