1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# blueshift-tray – Systray wrapper for Blueshift
# Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import signal
import subprocess
import pygtk
import gettext
pygtk.require("2.0")
import gtk, glib
LOCALEDIR = '/usr/share/locale'
gettext.bindtextdomain('blueshift', LOCALEDIR)
gettext.textdomain('blueshift')
def process_quit(signum, frame):
global running
process.wait()
if running:
running = False
icon.set_visible(False)
gtk.main_quit()
signal.signal(signal.SIGCHLD, process_quit)
process = subprocess.Popen(['blueshift'] + sys.argv[1:])
running = True
def create_menu(menu, image, title, function):
if image is None:
menu_item = gtk.MenuItem(gettext.gettext(title))
else:
menu_item = gtk.ImageMenuItem(image)
if title is not None:
menu_item.set_label(gettext.gettext(title))
menu_item.connect('activate', function)
menu.append(menu_item)
def f_toggle(widget, data = None):
process.send_signal(signal.SIGUSR2)
if icon.get_icon_name() == 'redshift-status-on':
icon.set_from_icon_name('redshift-status-off')
else:
icon.set_from_icon_name('redshift-status-on')
def f_reload(widget, data = None):
process.send_signal(signal.SIGUSR1)
def f_quit(widget, data = None):
global running
if running:
running = False
icon.set_visible(False)
gtk.main_quit()
process.send_signal(signal.SIGTERM)
def f_panic_quit(widget, data = None):
global running
if running:
running = False
icon.set_visible(False)
gtk.main_quit()
process.send_signal(signal.SIGTERM)
import time
time.sleep(0.01)
process.send_signal(signal.SIGTERM)
def f_popup(widget, button, time, data = None):
menu.show_all()
menu.popup(None, None, gtk.status_icon_position_menu, button, time, icon)
try:
icon = gtk.StatusIcon()
icon.set_from_icon_name('redshift-status-on')
icon.set_tooltip('Blueshift')
menu = gtk.Menu()
create_menu(menu, None, '_Toggle', f_toggle)
create_menu(menu, gtk.STOCK_REFRESH, '_Reload', f_reload)
create_menu(menu, None, None, f_reload)
create_menu(menu, gtk.STOCK_QUIT, '_Quit', f_quit)
create_menu(menu, gtk.STOCK_QUIT, '_Panic Quit', f_panic_quit)
icon.connect('activate', f_toggle)
icon.connect('popup-menu', f_popup)
icon.set_visible(True)
gtk.main()
except KeyboardInterrupt:
running = False
icon.set_visible(False)
process.send_signal(signal.SIGTERM)
finally:
try:
process.wait()
except KeyboardInterrupt:
process.send_signal(signal.SIGTERM)
|