summaryrefslogtreecommitdiff
path: root/portato/plugins/notify.py
blob: 78812b3ea53f6d9510582c9997e5891ed269a26c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import pynotify

from portato import get_listener

from portato.helper import warning, error, debug
from portato.constants import APP_ICON, APP

def notify (retcode, **kwargs):
	if retcode is None:
		warning("NOTIFY :: %s", _("Notify called while process is still running!"))
	else:
		icon = APP_ICON
		if retcode == 0:
			text = _("Emerge finished!")
			descr = ""
			urgency = pynotify.URGENCY_NORMAL
		else:
			text = _("Emerge failed!")
			descr = _("Error Code: %d") % retcode
			urgency = pynotify.URGENCY_CRITICAL

		get_listener().send_notify(base = text, descr = descr, icon = icon, urgency = urgency)
ené 'Necoro' Neumann2-40/+0 2009-08-27Only import stuff if necessaryRené 'Necoro' Neumann1-8/+8 2009-08-25Release the threadQueue-Lock in syncv0.13René 'Necoro' Neumann1-0/+1 2009-08-25Updated portugese translationAlberto Federman Neto1-650/+687 2009-08-15Update spanish translationDaniel Halens1-245/+258 2009-08-15Use boolean flags instead of obscure C flags for ipc.MessageQueueRené 'Necoro' Neumann3-13/+15 2009-08-15TypoRené 'Necoro' Neumann1-1/+1 2009-08-15Enhanced the extensions.shRené 'Necoro' Neumann1-3/+8 2009-08-15Move eix-format to correct locationRené 'Necoro' Neumann1-0/+0