Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
b1feb004e8 | |||
73021a25a1 | |||
4c73986596 | |||
d3665f2ff0 | |||
00fb6120c9 | |||
02d3e8b72a | |||
78254a550e | |||
7a5f506c23 | |||
1d3328f71e | |||
45d0cc9d11 | |||
4d6fe82790 | |||
9943a9075f |
10
README.md
10
README.md
@@ -7,6 +7,10 @@ This GNOME Shell Extension aims to display information to center box. Using DBUS
|
|||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
Install it from https://extensions.gnome.org/extension/2826/generic-monitor/
|
||||||
|
|
||||||
|
OR
|
||||||
|
|
||||||
Create a symbolic link from your _.local_ directory and enable extension
|
Create a symbolic link from your _.local_ directory and enable extension
|
||||||
|
|
||||||
ln -s $PWD/generic-monitor@gnome-shell-extensions/ ~/.local/share/gnome-shell/extensions/
|
ln -s $PWD/generic-monitor@gnome-shell-extensions/ ~/.local/share/gnome-shell/extensions/
|
||||||
@@ -109,7 +113,7 @@ Signals can be :
|
|||||||
|
|
||||||
Targets :
|
Targets :
|
||||||
|
|
||||||
* signal : emit a signal to desktop application
|
* signal : Emit a signal to desktop application
|
||||||
* delete : Delete item
|
* delete : Delete item
|
||||||
* open-popup : Open the popup if there is one
|
* open-popup : Open the popup if there is one
|
||||||
* close-popup : Close the popup if there is one
|
* close-popup : Close the popup if there is one
|
||||||
@@ -142,11 +146,11 @@ Example
|
|||||||
|
|
||||||
You can test it with command line :
|
You can test it with command line :
|
||||||
|
|
||||||
gdbus call --session --dest org.gnome.Shell --object-path /com/soutade/GenericMonitor --method com.soutade.GenericMonitor.notify '{"group":"new","items":[{"name":"first","on-click":"toggle-popup","text":{"text":"Hello","style":"color:green"},"popup":{"items":[{"picture":{"path":"/tmp/cat2.jpg"}}]}}]}'
|
gdbus call --session --dest org.gnome.Shell --object-path /com/soutade/GenericMonitor --method com.soutade.GenericMonitor.notify '{"group":"new","items":[{"name":"first","on-click":"toggle-popup","text":{"text":"Hello","style":"color:green"},"popup":{"items":[{"picture":{"path":"/tmp/cat.jpg"}}]}}]}'
|
||||||
|
|
||||||
gdbus call --session --dest org.gnome.Shell --object-path /com/soutade/GenericMonitor --method com.soutade.GenericMonitor.deleteGroups '{"groups":["new"]}'
|
gdbus call --session --dest org.gnome.Shell --object-path /com/soutade/GenericMonitor --method com.soutade.GenericMonitor.deleteGroups '{"groups":["new"]}'
|
||||||
|
|
||||||
Python examples is available
|
Python examples are available @ https://indefero.soutade.fr/p/genericmonitor/source/tree/master/examples
|
||||||
|
|
||||||
|
|
||||||
Development
|
Development
|
||||||
|
28
dbus.xml
28
dbus.xml
@@ -1,47 +1,47 @@
|
|||||||
<interface name="com.soutade.GenericMonitor">
|
<interface name="com.soutade.GenericMonitor">
|
||||||
<!-- Functions -->
|
<!-- Functions -->
|
||||||
<method name="notify">
|
<method name="notify">
|
||||||
<arg type="s" direction="in" />
|
<arg name="parameters" type="s" direction="in" />
|
||||||
</method>
|
</method>
|
||||||
<method name="deleteItems">
|
<method name="deleteItems">
|
||||||
<arg type="s" direction="in" />
|
<arg name="items" type="s" direction="in" />
|
||||||
</method>
|
</method>
|
||||||
<method name="deleteGroups">
|
<method name="deleteGroups">
|
||||||
<arg type="s" direction="in" />
|
<arg name="groups" type="s" direction="in" />
|
||||||
</method>
|
</method>
|
||||||
<method name="openPopup">
|
<method name="openPopup">
|
||||||
<arg type="s" direction="in" />
|
<arg name="popup" type="s" direction="in" />
|
||||||
</method>
|
</method>
|
||||||
<method name="closePopup">
|
<method name="closePopup">
|
||||||
<arg type="s" direction="in" />
|
<arg name="popup" type="s" direction="in" />
|
||||||
</method>
|
</method>
|
||||||
<method name="togglePopup">
|
<method name="togglePopup">
|
||||||
<arg type="s" direction="in" />
|
<arg name="popup" type="s" direction="in" />
|
||||||
</method>
|
</method>
|
||||||
<!-- Events -->
|
<!-- Events -->
|
||||||
<signal name="onClick">
|
<signal name="onClick">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onRightClick">
|
<signal name="onRightClick">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onDblClick">
|
<signal name="onDblClick">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onRightDblClick">
|
<signal name="onRightDblClick">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onScrollUp">
|
<signal name="onScrollUp">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onScrollDown">
|
<signal name="onScrollDown">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onEnter">
|
<signal name="onEnter">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<signal name="onLeave">
|
<signal name="onLeave">
|
||||||
<arg type="s" direction="out" />
|
<arg name="fullName" type="s" direction="out" />
|
||||||
</signal>
|
</signal>
|
||||||
<!-- Activate/Deactivate signals -->
|
<!-- Activate/Deactivate signals -->
|
||||||
<signal name="onActivate">
|
<signal name="onActivate">
|
||||||
|
@@ -56,7 +56,7 @@ class PicturePopup(GenericMonitor):
|
|||||||
popup = GenericMonitorPopup([url_widget, picture_widget])
|
popup = GenericMonitorPopup([url_widget, picture_widget])
|
||||||
signals = {
|
signals = {
|
||||||
'on-click':'toggle-popup',
|
'on-click':'toggle-popup',
|
||||||
# Could also use this behavior
|
# Could also use this behavior [bugged since GNOME 42]
|
||||||
# 'on-enter':'open-popup',
|
# 'on-enter':'open-popup',
|
||||||
# 'on-leave':'close-popup',
|
# 'on-leave':'close-popup',
|
||||||
'on-dblclick':'signal',
|
'on-dblclick':'signal',
|
||||||
|
130
extension.js
130
extension.js
@@ -24,14 +24,13 @@
|
|||||||
https://github.com/bananenfisch/RecentItems/blob/master/extension.js
|
https://github.com/bananenfisch/RecentItems/blob/master/extension.js
|
||||||
https://github.com/julio641742/gnome-shell-extension-reference/blob/master/tutorials/POPUPMENU-EXTENSION.md
|
https://github.com/julio641742/gnome-shell-extension-reference/blob/master/tutorials/POPUPMENU-EXTENSION.md
|
||||||
https://gjs-docs.gnome.org/st10~1.0_api/st.widget
|
https://gjs-docs.gnome.org/st10~1.0_api/st.widget
|
||||||
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/master/js/ui/panelMenu.js
|
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/panelMenu.js
|
||||||
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/master/js/ui/popupMenu.js
|
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/popupMenu.js
|
||||||
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/master/js/ui/panel.js
|
https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/panel.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const St = imports.gi.St;
|
const St = imports.gi.St;
|
||||||
const Gio = imports.gi.Gio;
|
const Gio = imports.gi.Gio;
|
||||||
const Lang = imports.lang;
|
|
||||||
const GLib = imports.gi.GLib
|
const GLib = imports.gi.GLib
|
||||||
const Main = imports.ui.main;
|
const Main = imports.ui.main;
|
||||||
const Mainloop = imports.mainloop;
|
const Mainloop = imports.mainloop;
|
||||||
@@ -57,14 +56,17 @@ function log(message) {
|
|||||||
|
|
||||||
class SignalMgt {
|
class SignalMgt {
|
||||||
|
|
||||||
constructor(item, name, group, dbus, menu) {
|
constructor(item, name, group, dbus, buttonMenu) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.group = group;
|
this.group = group;
|
||||||
this.fullname = this.name + '@' + this.group;
|
this.fullname = this.name + '@' + this.group;
|
||||||
this.dbus = dbus;
|
this.dbus = dbus;
|
||||||
this.menu = menu;
|
this.buttonMenu = buttonMenu;
|
||||||
this.signals = {}
|
this.signals = new WeakMap();
|
||||||
|
this.widgets = new Array();
|
||||||
|
this.timeouts = new Array();
|
||||||
|
|
||||||
|
this.menuOpen = false;
|
||||||
this.nbClicks = 0;
|
this.nbClicks = 0;
|
||||||
this.button = -1;
|
this.button = -1;
|
||||||
|
|
||||||
@@ -78,8 +80,10 @@ class SignalMgt {
|
|||||||
}
|
}
|
||||||
|
|
||||||
destructor() {
|
destructor() {
|
||||||
for(let widgetIdx in this.signals)
|
for(let widgetIdx in this.widgets)
|
||||||
this.disconnectWidgetSignals(this.signals[widgetIdx]);
|
this.disconnectWidgetSignals(this.widgets[widgetIdx]);
|
||||||
|
for(let timeoutIdx in this.timeouts)
|
||||||
|
GLib.Source.remove(this.timeouts[timeoutIdx]);
|
||||||
}
|
}
|
||||||
|
|
||||||
updateSignals(item) {
|
updateSignals(item) {
|
||||||
@@ -93,42 +97,62 @@ class SignalMgt {
|
|||||||
}
|
}
|
||||||
|
|
||||||
connectWidgetSignals(widget) {
|
connectWidgetSignals(widget) {
|
||||||
this.signals[widget] = [];
|
this.widgets.push(widget);
|
||||||
|
let array = new Array();
|
||||||
|
this.signals.set(widget, array);
|
||||||
let id;
|
let id;
|
||||||
id = widget.connect('enter-event', this._onEnter.bind(this));
|
id = widget.connect('enter-event', this._onEnter.bind(this));
|
||||||
this.signals[widget].push(id);
|
array.push(id);
|
||||||
id = widget.connect('leave-event', this._onLeave.bind(this));
|
id = widget.connect('leave-event', this._onLeave.bind(this));
|
||||||
this.signals[widget].push(id);
|
array.push(id);
|
||||||
id = widget.connect('scroll-event', this._onScroll.bind(this));
|
id = widget.connect('scroll-event', this._onScroll.bind(this));
|
||||||
this.signals[widget].push(id);
|
array.push(id);
|
||||||
widget.set_reactive(true);
|
widget.set_reactive(true);
|
||||||
id = widget.connect('button-release-event', Lang.bind(this, this._clicked));
|
id = widget.connect('button-release-event', this._clicked.bind(this));
|
||||||
this.signals[widget].push(id);
|
array.push(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
disconnectWidgetSignals(widget) {
|
disconnectWidgetSignals(widget) {
|
||||||
for(let idx in this.signals[widget])
|
let array = this.signals.get(widget);
|
||||||
widget.disconnect(this.signals[widget][idx]);
|
for(let idx in array)
|
||||||
this.signals[widget] = null;
|
widget.disconnect(array[idx]);
|
||||||
|
this.signals.set(widget, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
toggleMenu() {
|
||||||
|
if (this.menuOpen)
|
||||||
|
{
|
||||||
|
this.buttonMenu.menu.close();
|
||||||
|
this.menuOpen = false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.buttonMenu.menu.open(true);
|
||||||
|
this.menuOpen = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_manageEventAction(action, signalName) {
|
_manageEventAction(action, signalName) {
|
||||||
if (action === 'open-popup')
|
if (action === 'open-popup')
|
||||||
this.menu.open(true);
|
{
|
||||||
|
this.buttonMenu.menu.open(true);
|
||||||
|
this.menuOpen = true;
|
||||||
|
}
|
||||||
else if (action === 'close-popup')
|
else if (action === 'close-popup')
|
||||||
this.menu.close();
|
{
|
||||||
|
this.buttonMenu.menu.close();
|
||||||
|
this.menuOpen = false;
|
||||||
|
}
|
||||||
else if (action === 'toggle-popup')
|
else if (action === 'toggle-popup')
|
||||||
this.menu.toggle();
|
{
|
||||||
else if (action == 'delete')
|
this.toggleMenu();
|
||||||
|
}
|
||||||
|
else if (action === 'delete')
|
||||||
this.dbus.deleteItem(this, this.group);
|
this.dbus.deleteItem(this, this.group);
|
||||||
else if (action === 'signal')
|
else if (action === 'signal')
|
||||||
this.dbus.emitSignal(signalName, this.fullname);
|
this.dbus.emitSignal(signalName, this.fullname);
|
||||||
|
|
||||||
return Clutter.EVENT_PROPAGATE;
|
return Clutter.EVENT_STOP;
|
||||||
}
|
|
||||||
|
|
||||||
_manageLeaveEvent() {
|
|
||||||
this._manageEventAction(this.onLeave);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_doClickCallback() {
|
_doClickCallback() {
|
||||||
@@ -165,8 +189,9 @@ class SignalMgt {
|
|||||||
this.button = event.get_button();
|
this.button = event.get_button();
|
||||||
this.nbClicks = 1;
|
this.nbClicks = 1;
|
||||||
|
|
||||||
Mainloop.timeout_add(this.dbus.ClutterSettings['double-click-time'],
|
let sourceId = Mainloop.timeout_add(this.dbus.ClutterSettings['double-click-time'],
|
||||||
Lang.bind(this, this._doClickCallback));
|
this._doClickCallback.bind(this));
|
||||||
|
this.timeouts.push(sourceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Clutter.EVENT_PROPAGATE;
|
return Clutter.EVENT_PROPAGATE;
|
||||||
@@ -222,8 +247,10 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
this.group = group;
|
this.group = group;
|
||||||
this.fullname = this.name + '@' + this.group;
|
this.fullname = this.name + '@' + this.group;
|
||||||
this.dbus = dbus;
|
this.dbus = dbus;
|
||||||
this.signals = new SignalMgt(item, this.name, group, dbus, this.menu);
|
this.menuItem = null;
|
||||||
this.popup_signals = {};
|
this.signalManager = new SignalMgt(item, this.name, group, dbus, this);
|
||||||
|
this.popup_signals = null;
|
||||||
|
this.popup_widgets = null;
|
||||||
|
|
||||||
if (item.hasOwnProperty('icon'))
|
if (item.hasOwnProperty('icon'))
|
||||||
{
|
{
|
||||||
@@ -232,7 +259,7 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
else
|
else
|
||||||
this.icon = this._createIcon(item['icon']);
|
this.icon = this._createIcon(item['icon']);
|
||||||
if (this.icon !== null) {
|
if (this.icon !== null) {
|
||||||
this.signals.connectWidgetSignals(this.icon);
|
this.signalManager.connectWidgetSignals(this.icon);
|
||||||
this.add_child(this.icon);
|
this.add_child(this.icon);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
@@ -246,7 +273,7 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
this.widget = this._createText(item['text']);
|
this.widget = this._createText(item['text']);
|
||||||
|
|
||||||
if (this.widget !== null) {
|
if (this.widget !== null) {
|
||||||
this.signals.connectWidgetSignals(this.widget);
|
this.signalManager.connectWidgetSignals(this.widget);
|
||||||
this.add_child(this.widget);
|
this.add_child(this.widget);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
@@ -320,7 +347,7 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (prevIcon) {
|
if (prevIcon) {
|
||||||
this.signals.disconnectWidgetSignals(prevIcon);
|
this.signalManager.disconnectWidgetSignals(prevIcon);
|
||||||
this.insert_child_above(this.icon, prevIcon);
|
this.insert_child_above(this.icon, prevIcon);
|
||||||
this.remove_child(prevIcon);
|
this.remove_child(prevIcon);
|
||||||
//delete prevIcon;
|
//delete prevIcon;
|
||||||
@@ -338,8 +365,8 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
if (this.menuItem) {
|
if (this.menuItem) {
|
||||||
if (menuOpen)
|
if (menuOpen)
|
||||||
this.menu.close();
|
this.menu.close();
|
||||||
for(let widgetIdx in this.popup_signals)
|
for(let widgetIdx in this.popup_widgets)
|
||||||
this.signals.disconnectWidgetSignals(this.popup_signals[widgetIdx]);
|
this.signalManager.disconnectWidgetSignals(this.popup_widgets[widgetIdx]);
|
||||||
this.menu.removeAll();
|
this.menu.removeAll();
|
||||||
//delete this.menuItem;
|
//delete this.menuItem;
|
||||||
}
|
}
|
||||||
@@ -349,7 +376,7 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
this.menu.open(true);
|
this.menu.open(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.signals.updateSignals(item);
|
this.signalManager.updateSignals(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
openPopup() {
|
openPopup() {
|
||||||
@@ -381,6 +408,8 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let widgets = [];
|
let widgets = [];
|
||||||
|
this.popup_signals = new WeakMap();
|
||||||
|
this.popup_widgets = new Array();
|
||||||
for (let itemIndex in item['items']) {
|
for (let itemIndex in item['items']) {
|
||||||
let widget = null;
|
let widget = null;
|
||||||
let widgetDict = item['items'][itemIndex];
|
let widgetDict = item['items'][itemIndex];
|
||||||
@@ -388,7 +417,7 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
let nestedItem = null;
|
let nestedItem = null;
|
||||||
if (widgetDict.hasOwnProperty('text')) {
|
if (widgetDict.hasOwnProperty('text')) {
|
||||||
nestedItem = widgetDict['text'];
|
nestedItem = widgetDict['text'];
|
||||||
widget = this._createText(nestedItem);
|
widget = this._createLabel(nestedItem);
|
||||||
} else if (widgetDict.hasOwnProperty('picture')) {
|
} else if (widgetDict.hasOwnProperty('picture')) {
|
||||||
nestedItem = widgetDict['picture'];
|
nestedItem = widgetDict['picture'];
|
||||||
widget = this._createPicture(nestedItem);
|
widget = this._createPicture(nestedItem);
|
||||||
@@ -404,8 +433,9 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
const name = hashGet(nestedItem, 'name', '');
|
const name = hashGet(nestedItem, 'name', '');
|
||||||
this.popup_signals[widget] = new SignalMgt(nestedItem, name,
|
this.popup_signals[widget] = new SignalMgt(nestedItem, name,
|
||||||
this.fullname, this.dbus,
|
this.fullname, this.dbus,
|
||||||
this.menu);
|
this);
|
||||||
this.popup_signals[widget].connectWidgetSignals(widget);
|
this.popup_signals[widget].connectWidgetSignals(widget);
|
||||||
|
this.popup_widgets.push(widget);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (widgets.length > 0) {
|
if (widgets.length > 0) {
|
||||||
@@ -426,7 +456,7 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
return this._createText(itemValues);
|
return this._createText(itemValues);
|
||||||
}
|
}
|
||||||
|
|
||||||
_createText(item) {
|
__createText(item, isLabel) {
|
||||||
if (!item.hasOwnProperty('text')) {
|
if (!item.hasOwnProperty('text')) {
|
||||||
log('Text must have a \'text\' value');
|
log('Text must have a \'text\' value');
|
||||||
return null;
|
return null;
|
||||||
@@ -439,13 +469,25 @@ class MonitorWidget extends PanelMenu.Button {
|
|||||||
if (item['text'] === '') {
|
if (item['text'] === '') {
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
const widget = new St.Button({ label: item['text'] });
|
let widget = null;
|
||||||
|
if (isLabel)
|
||||||
|
widget = new St.Label({ text: item['text'] });
|
||||||
|
else
|
||||||
|
widget = new St.Button({ label: item['text'] });
|
||||||
widget.set_style(style);
|
widget.set_style(style);
|
||||||
|
|
||||||
return widget;
|
return widget;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_createText(item) {
|
||||||
|
return this.__createText(item, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
_createLabel(item) {
|
||||||
|
return this.__createText(item, true);
|
||||||
|
}
|
||||||
|
|
||||||
_createIconOld(item) {
|
_createIconOld(item) {
|
||||||
var itemValues = {};
|
var itemValues = {};
|
||||||
itemValues = { 'path':item['icon'] };
|
itemValues = { 'path':item['icon'] };
|
||||||
@@ -768,15 +810,19 @@ class Extension {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const extension = new Extension();
|
let extension = null;
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function enable() {
|
function enable() {
|
||||||
|
extension = new Extension();
|
||||||
extension.enable();
|
extension.enable();
|
||||||
}
|
}
|
||||||
|
|
||||||
function disable() {
|
function disable() {
|
||||||
|
if (extension) {
|
||||||
extension.disable();
|
extension.disable();
|
||||||
|
extension = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -2,11 +2,12 @@
|
|||||||
"uuid": "generic-monitor@gnome-shell-extensions",
|
"uuid": "generic-monitor@gnome-shell-extensions",
|
||||||
"name": "Generic Monitor",
|
"name": "Generic Monitor",
|
||||||
"description": "Display text & icon on systray using DBUS",
|
"description": "Display text & icon on systray using DBUS",
|
||||||
"version": "4",
|
"version": "12",
|
||||||
"shell-version": [
|
"shell-version": [
|
||||||
"3.38",
|
"43",
|
||||||
"3.36",
|
"42.3",
|
||||||
"3.34"
|
"42",
|
||||||
|
"41"
|
||||||
],
|
],
|
||||||
"url": "http://indefero.soutade.fr/p/genericmonitor"
|
"url": "http://indefero.soutade.fr/p/genericmonitor"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user