A set of tools for configuring the Logitech G19 keyboard. Based in: https://github.com/Gnome15/gnome15
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

110 lines
3.9 KiB

#!/usr/bin/env python2
# Gnome15 - Suite of tools for the Logitech G series keyboards and headsets
# Copyright (C) 2010 Brett Smith <tanktarta@blueyonder.co.uk>
#
# 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/>.
'''
Provides a panel indicator that can be used to control and monitor the Gnome15
desktop service (g15-desktop-service). It will display a list of currently active
screens on activation, and allow the configuration UI to be launched (g15-config)
'''
import sys
import pygtk
pygtk.require('2.0')
import gtk
import os
import appindicator
import gconf
from threading import RLock
# Allow running from local path
path = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), "..")
if os.path.exists(path):
sys.path.insert(0, path)
# Logging
import gnome15.g15logging as g15logging
logger = g15logging.get_root_logger()
# This block MUST be before the imports of the gnome15 modules
import dbus
import gobject
gobject.threads_init()
import dbus
from dbus.mainloop.glib import DBusGMainLoop
from dbus.mainloop.glib import threads_init
threads_init()
DBusGMainLoop(set_as_default=True)
import gnome15.g15globals as g15globals
import gnome15.g15service as g15service
import gnome15.g15screen as g15screen
import gnome15.util.g15convert as g15convert
import gnome15.g15desktop as g15desktop
class G15Indicator(g15desktop.G15GtkMenuPanelComponent):
def __init__(self):
g15desktop.G15GtkMenuPanelComponent.__init__(self)
def create_component(self):
item = gtk.MenuItem("Preferences")
item.connect("activate", self.show_configuration)
self.menu.append(item)
item = gtk.MenuItem("About Gnome15")
item.connect("activate", self.about_info)
self.menu.append(item)
self.menu.append(gtk.MenuItem())
self.indicator = appindicator.Indicator("gnome15",
self.get_icon_path("logitech-g-keyboard-panel"),
appindicator.CATEGORY_HARDWARE)
self.indicator.set_status (appindicator.STATUS_ACTIVE)
self.indicator.set_menu(self.menu)
def clear_attention(self):
self.remove_attention_menu_item()
if self.conf_client.get_bool("/apps/gnome15/indicate_only_on_error"):
self.indicator.set_status (appindicator.STATUS_PASSIVE)
else:
self.indicator.set_status (appindicator.STATUS_ACTIVE)
def attention(self, message = None):
self.indicator.set_status (appindicator.STATUS_ATTENTION)
def icons_changed(self):
self.indicator.set_icon(self.get_icon_path([ "logitech-g-keyboard-panel", "logitech-g-keyboard-applet" ]))
self.indicator.set_attention_icon(self.get_icon_path([ "logitech-g-keyboard-error-panel", "logitech-g-keyboard-error-applet" ]))
# run it in a gtk window
if __name__ == "__main__":
try :
import setproctitle
setproctitle.setproctitle(os.path.basename(os.path.abspath(sys.argv[0])))
except Exception as e:
logger.debug("Could not import setproctitle. Using python as processname", exc_info = e)
pass
if g15desktop.get_desktop() == "gnome-shell":
sys.stderr.write("Indicator is not supported in GNOME Shell, use the GNOME Shell extension instead")
sys.exit(1)
G15Indicator().start_service()
gtk.main()