forked from paradoxxxzero/gnome-shell-system-monitor-applet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
system-monitor-applet-config.py
executable file
·296 lines (248 loc) · 10.5 KB
/
system-monitor-applet-config.py
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# -*- Mode: Python; py-indent-offset: 4 -*-
# vim: tabstop=4 shiftwidth=4 expandtab
# system-monitor: Gnome shell extension displaying system informations
# in gnome shell status bar, such as memory usage, cpu usage, network rates....
# Copyright (C) 2011 Florian Mounier aka paradoxxxzero
# 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/>.
# Author: Florian Mounier aka paradoxxxzero
"""
system-monitor-applet-config
Tool for editing system-monitor-applet preference as
an alternative of dconf-editor
"""
from sys import exit
try:
from gi.repository import Gtk, Gio, Gdk
except ImportError:
print("Missing Dependencies, please install Python "
"Gobject bindings from your distribution.")
exit()
import os.path
import gettext
from gettext import gettext as _
gettext.textdomain('system-monitor-applet')
def color_to_hex(color):
return "#%02x%02x%02x%02x" % (
color.red * 255,
color.green * 255,
color.blue * 255,
color.alpha * 255)
def hex_to_color(hexstr):
return Gdk.RGBA(
int(hexstr[1:3], 16) / 255.,
int(hexstr[3:5], 16) / 255.,
int(hexstr[5:7], 16) / 255.,
int(hexstr[7:9], 16) / 255. if len(hexstr) == 9 else 1) \
if (len(hexstr) != 4 & len(hexstr) != 5) else Gdk.RGBA(
int(hexstr[1], 16) / 15.,
int(hexstr[2], 16) / 15.,
int(hexstr[3], 16) / 15.,
int(hexstr[4], 16) / 15. if len(hexstr) == 5 else 1)
def check_sensors():
inputs = ['temp1_input','temp2_input']
sensor_path = '/sys/class/hwmon/'
sensor_list = []
string_list = []
for j in range(5):
for sfile in inputs:
test = sensor_path + 'hwmon' + str(j) + '/' + sfile
if not os.path.isfile(test):
test = sensor_path + 'hwmon' + str(j) + '/device/' + sfile
if not os.path.isfile(test):
break
sensor = os.path.split(test)
infile = open(sensor[0] + '/name', "r")
label = infile.readline().split('\n')[0] + ' - ' + sensor[1]
string_list.append(label)
sensor_list.append(test)
infile.close()
return sensor_list, string_list
class ColorSelect:
def __init__(self, name):
self.label = Gtk.Label(name + ":")
self.picker = Gtk.ColorButton()
self.actor = Gtk.HBox()
self.actor.add(self.label)
self.actor.add(self.picker)
self.picker.set_use_alpha(True)
def set_value(self, value):
self.picker.set_rgba(hex_to_color(value))
class IntSelect:
def __init__(self, name):
self.label = Gtk.Label(name + ":")
self.spin = Gtk.SpinButton()
self.actor = Gtk.HBox()
self.actor.add(self.label)
self.actor.add(self.spin)
self.spin.set_numeric(True)
def set_args(self, minv, maxv, incre, page):
self.spin.set_range(minv, maxv)
self.spin.set_increments(incre, page)
def set_value(self, value):
self.spin.set_value(value)
class Select:
def __init__(self, name):
self.label = Gtk.Label(name + ":")
self.selector = Gtk.ComboBoxText()
self.actor = Gtk.HBox()
self.actor.add(self.label)
self.actor.add(self.selector)
def set_value(self, value):
self.selector.set_active(value)
def add(self, items):
for item in items:
self.selector.append_text(item)
def set_boolean(check, schema, name):
schema.set_boolean(name, check.get_active())
def set_int(spin, schema, name):
schema.set_int(name, spin.get_value_as_int())
return False
def set_enum(combo, schema, name):
schema.set_enum(name, combo.get_active())
def set_color(color, schema, name):
schema.set_string(name, color_to_hex(color.get_rgba()))
def set_string(combo, schema, name, _slist):
schema.set_string(name, _slist[combo.get_active()])
class SettingFrame:
def __init__(self, name, schema):
self.schema = schema
self.label = Gtk.Label(name)
self.frame = Gtk.Frame()
self.frame.set_border_width(10)
self.vbox = Gtk.VBox(spacing=20)
self.hbox0 = Gtk.HBox(spacing=20)
self.hbox1 = Gtk.HBox(spacing=20)
self.hbox2 = Gtk.HBox(spacing=20)
self.hbox3 = Gtk.HBox(spacing=20)
self.frame.add(self.vbox)
self.vbox.pack_start(self.hbox0, True, False, 0)
self.vbox.pack_start(self.hbox1, True, False, 0)
self.vbox.pack_start(self.hbox2, True, False, 0)
self.vbox.pack_start(self.hbox3, True, False, 0)
def add(self, key):
sections = key.split('-')
if sections[1] == 'display':
item = Gtk.CheckButton(label=_('Display'))
item.set_active(self.schema.get_boolean(key))
self.hbox0.add(item)
item.connect('toggled', set_boolean, self.schema, key)
elif sections[1] == 'refresh':
item = IntSelect(_('Refresh Time'))
item.set_args(50, 100000, 100, 1000)
item.set_value(self.schema.get_int(key))
self.hbox1.add(item.actor)
item.spin.connect('output', set_int, self.schema, key)
elif sections[1] == 'graph' and sections[2] == 'width':
item = IntSelect(_('Graph Width'))
item.set_args(1, 1000, 1, 10)
item.set_value(self.schema.get_int(key))
self.hbox1.add(item.actor)
item.spin.connect('output', set_int, self.schema, key)
elif sections[1] == 'show' and sections[2] == 'text':
item = Gtk.CheckButton(label=_('Show Text'))
item.set_active(self.schema.get_boolean(key))
self.hbox0.add(item)
item.connect('toggled', set_boolean, self.schema, key)
elif sections[1] == 'style':
item = Select(_('Display Style'))
item.add((_('digit'), _('graph'), _('both')))
item.set_value(self.schema.get_enum(key))
self.hbox1.add(item.actor)
item.selector.connect('changed', set_enum, self.schema, key)
elif sections[1] == 'speed':
item = Gtk.CheckButton(label=_('Show network speed in bits'))
item.set_active(self.schema.get_boolean(key))
self.hbox3.add(item)
item.connect('toggled', set_boolean, self.schema, key)
elif len(sections) == 3 and sections[2] == 'color':
item = ColorSelect(_(sections[1].capitalize()))
item.set_value(self.schema.get_string(key))
self.hbox2.pack_end(item.actor, True, False, 0)
item.picker.connect('color-set', set_color, self.schema, key)
elif sections[1] == 'sensor':
_slist, _strlist = check_sensors()
item = Select(_('Sensor'))
if (len(_slist) == 0):
item.add((_('Please install lm-sensors'),))
if (len(_slist) == 1):
self.schema.set_string(key, _slist[0])
item.add(_strlist)
try:
item.set_value(_slist.index(self.schema.get_string(key)))
except ValueError:
item.set_value(0)
self.hbox3.add(item.actor)
item.selector.connect('changed', set_string,
self.schema, key, _slist)
class App:
opt = {}
setting_items = ('cpu', 'memory', 'swap', 'net', 'disk', 'thermal', 'freq')
def __init__(self):
self.schema = Gio.Settings('org.gnome.shell.extensions.system-monitor')
keys = self.schema.keys()
self.window = Gtk.Window(title=_('System Monitor Applet Configurator'))
self.window.connect('destroy', Gtk.main_quit)
self.window.set_border_width(10)
self.items = []
self.settings = {}
for setting in self.setting_items:
self.settings[setting] = SettingFrame(
_(setting.capitalize()), self.schema)
self.main_vbox = Gtk.VBox(spacing=10)
self.main_vbox.set_border_width(10)
self.hbox1 = Gtk.HBox(spacing=20)
self.hbox1.set_border_width(10)
self.main_vbox.pack_start(self.hbox1, False, False, 0)
self.window.add(self.main_vbox)
for key in keys:
if key == 'icon-display':
item = Gtk.CheckButton(label=_('Display Icon'))
item.set_active(self.schema.get_boolean(key))
self.items.append(item)
self.hbox1.add(item)
item.connect('toggled', set_boolean, self.schema, key)
elif key == 'center-display':
item = Gtk.CheckButton(label=_('Display in the Middle'))
item.set_active(self.schema.get_boolean(key))
self.items.append(item)
self.hbox1.add(item)
item.connect('toggled', set_boolean, self.schema, key)
elif key == 'move-clock':
item = Gtk.CheckButton(label=_('Move the clock'))
item.set_active(self.schema.get_boolean(key))
self.items.append(item)
self.hbox1.add(item)
item.connect('toggled', set_boolean, self.schema, key)
elif key == 'background':
item = ColorSelect(_('Background Color'))
item.set_value(self.schema.get_string(key))
self.items.append(item)
self.hbox1.pack_start(item.actor, True, False, 0)
item.picker.connect('color-set', set_color, self.schema, key)
else:
sections = key.split('-')
if sections[0] in self.setting_items:
self.settings[sections[0]].add(key)
self.notebook = Gtk.Notebook()
for setting in self.setting_items:
self.notebook.append_page(
self.settings[setting].frame, self.settings[setting].label)
self.main_vbox.pack_start(self.notebook, True, True, 0)
self.window.set_resizable(False)
self.window.show_all()
def main():
App()
Gtk.main()
if __name__ == '__main__':
main()