2013-04-07 09:16:23 -03:00
|
|
|
#! /usr/bin/python3
|
2013-03-31 14:31:33 -03:00
|
|
|
# -*- coding:utf-8 -*-
|
2013-02-02 10:02:18 -03:00
|
|
|
|
2013-02-22 12:43:52 -03:00
|
|
|
from gi.repository import Gtk, GObject
|
2013-03-25 13:51:20 -03:00
|
|
|
from subprocess import Popen
|
2013-02-11 11:45:24 -03:00
|
|
|
import dbus
|
2013-02-16 13:27:46 -03:00
|
|
|
import threading
|
2013-02-11 11:45:24 -03:00
|
|
|
|
2013-03-31 14:31:33 -03:00
|
|
|
# i18n
|
|
|
|
import gettext
|
|
|
|
gettext.bindtextdomain('pamac', '/usr/share/locale')
|
|
|
|
gettext.textdomain('pamac')
|
|
|
|
_ = gettext.gettext
|
|
|
|
|
2013-02-22 12:43:52 -03:00
|
|
|
GObject.threads_init()
|
2013-02-10 11:59:53 -03:00
|
|
|
|
2013-03-18 07:07:58 -03:00
|
|
|
icon = ''
|
|
|
|
info = ''
|
|
|
|
update_icon = '/usr/share/pamac/icons/scalable/status/update-normal.svg'
|
2013-03-31 14:31:33 -03:00
|
|
|
update_info = _('{number} available updates')
|
|
|
|
one_update_info = _('1 available update')
|
2013-03-18 07:07:58 -03:00
|
|
|
noupdate_icon = '/usr/share/pamac/icons/scalable/status/update-enhancement.svg'
|
2013-03-31 14:31:33 -03:00
|
|
|
noupdate_info = _('Your system is up-to-date')
|
2013-03-18 07:07:58 -03:00
|
|
|
|
2013-02-10 11:59:53 -03:00
|
|
|
class Tray:
|
2013-02-16 13:27:46 -03:00
|
|
|
def __init__(self):
|
2013-02-10 11:59:53 -03:00
|
|
|
self.statusIcon = Gtk.StatusIcon()
|
|
|
|
self.statusIcon.set_visible(True)
|
|
|
|
|
|
|
|
self.menu = Gtk.Menu()
|
2013-03-31 14:31:33 -03:00
|
|
|
self.menuItem = Gtk.ImageMenuItem(_('Install/Check for updates'))
|
2013-02-10 11:59:53 -03:00
|
|
|
self.menuItem.connect('activate', self.execute_update, self.statusIcon)
|
|
|
|
self.menu.append(self.menuItem)
|
2013-03-31 14:31:33 -03:00
|
|
|
self.menuItem = Gtk.ImageMenuItem(_('Run pamac-manager'))
|
2013-02-10 11:59:53 -03:00
|
|
|
self.menuItem.connect('activate', self.execute_manager, self.statusIcon)
|
|
|
|
self.menu.append(self.menuItem)
|
2013-03-31 14:31:33 -03:00
|
|
|
self.menuItem = Gtk.ImageMenuItem(_('Quit'))
|
2013-02-10 11:59:53 -03:00
|
|
|
self.menuItem.connect('activate', self.quit_tray, self.statusIcon)
|
|
|
|
self.menu.append(self.menuItem)
|
|
|
|
|
|
|
|
self.statusIcon.connect('popup-menu', self.popup_menu_cb, self.menu)
|
2013-03-18 07:07:58 -03:00
|
|
|
self.statusIcon.connect('activate', self.activate_cb, self.menu)
|
2013-02-10 11:59:53 -03:00
|
|
|
|
|
|
|
def execute_update(self, widget, event, data = None):
|
2013-03-25 13:51:20 -03:00
|
|
|
Popen(['/usr/bin/pamac-updater'])
|
2013-02-10 11:59:53 -03:00
|
|
|
|
|
|
|
def execute_manager(self, widget, event, data = None):
|
2013-03-25 13:51:20 -03:00
|
|
|
Popen(['/usr/bin/pamac-manager'])
|
2013-02-10 11:59:53 -03:00
|
|
|
|
|
|
|
def quit_tray(self, widget, data = None):
|
2013-02-16 13:27:46 -03:00
|
|
|
t.shutdown()
|
2013-02-10 11:59:53 -03:00
|
|
|
Gtk.main_quit()
|
|
|
|
|
|
|
|
def popup_menu_cb(self, widget, button, time, data = None):
|
|
|
|
if button == 3:
|
|
|
|
if data:
|
|
|
|
data.show_all()
|
|
|
|
data.popup(None, None, Gtk.StatusIcon.position_menu, self.statusIcon, 3, time)
|
|
|
|
|
2013-03-18 07:07:58 -03:00
|
|
|
def activate_cb(self, widget, data = None):
|
2013-03-25 13:51:20 -03:00
|
|
|
Popen(['notify-send', '-i', icon, '-u', 'normal', 'Pamac', info])
|
2013-03-18 07:07:58 -03:00
|
|
|
|
2013-02-16 13:27:46 -03:00
|
|
|
def update_icon(self, icon, info):
|
|
|
|
self.statusIcon.set_from_file(icon)
|
|
|
|
self.statusIcon.set_tooltip_markup(info)
|
2013-02-10 11:59:53 -03:00
|
|
|
|
2013-02-16 13:27:46 -03:00
|
|
|
class PeriodicTask(threading.Thread):
|
|
|
|
"""Thread that executes a task every N seconds"""
|
|
|
|
def __init__(self):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self._finished = threading.Event()
|
2013-02-23 13:02:53 -03:00
|
|
|
self._interval = 3600*3
|
2013-02-16 13:27:46 -03:00
|
|
|
|
|
|
|
def setInterval(self, interval):
|
|
|
|
"""Set the number of seconds we sleep between executing our task"""
|
|
|
|
self._interval = interval
|
|
|
|
|
|
|
|
def shutdown(self):
|
|
|
|
"""Stop this thread"""
|
|
|
|
self._finished.set()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
while 1:
|
|
|
|
if self._finished.isSet():
|
|
|
|
return
|
|
|
|
self.task()
|
|
|
|
# sleep for interval or until shutdown
|
|
|
|
self._finished.wait(self._interval)
|
|
|
|
|
|
|
|
def task(self):
|
2013-03-25 13:51:20 -03:00
|
|
|
Popen(['/usr/bin/pamac-refresh'])
|
2013-02-16 13:27:46 -03:00
|
|
|
|
2013-02-23 13:02:53 -03:00
|
|
|
def set_icon(updates):
|
2013-03-18 07:07:58 -03:00
|
|
|
global icon
|
|
|
|
global info
|
2013-02-10 11:59:53 -03:00
|
|
|
if updates:
|
2013-03-18 07:07:58 -03:00
|
|
|
icon = update_icon
|
2013-03-31 14:31:33 -03:00
|
|
|
if int(updates) == 1:
|
|
|
|
info = one_update_info
|
|
|
|
else:
|
|
|
|
info = update_info.format(number = updates)
|
2013-03-25 13:51:20 -03:00
|
|
|
Popen(['notify-send', '-i', icon, '-u', 'normal', 'Pamac', info])
|
2013-02-10 11:59:53 -03:00
|
|
|
else:
|
2013-03-18 07:07:58 -03:00
|
|
|
icon = noupdate_icon
|
|
|
|
info = noupdate_info
|
2013-02-22 12:43:52 -03:00
|
|
|
print(info)
|
2013-02-16 13:27:46 -03:00
|
|
|
tray.update_icon(icon, info)
|
|
|
|
|
2013-05-18 05:24:20 -04:00
|
|
|
from pamac import transaction
|
|
|
|
bus = dbus.SystemBus()
|
2013-02-23 13:02:53 -03:00
|
|
|
bus.add_signal_receiver(set_icon, dbus_interface = "org.manjaro.pamac", signal_name = "EmitAvailableUpdates")
|
2013-05-18 05:24:20 -04:00
|
|
|
transaction.StopDaemon()
|
2013-02-11 11:45:24 -03:00
|
|
|
|
2013-02-22 12:43:52 -03:00
|
|
|
tray = Tray()
|
2013-02-16 13:27:46 -03:00
|
|
|
t = PeriodicTask()
|
|
|
|
t.start()
|
2013-02-22 12:43:52 -03:00
|
|
|
Gtk.main()
|