Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2017-12-21 23:15:03 +0300
committerPhilipp Hörist <philipp@hoerist.com>2017-12-21 23:15:58 +0300
commit1e25d25497027f88677d53b6c51f8fb4caf4fa6a (patch)
tree4f9b78ba8cd8f65befded6a841be3fc8d85481c0
parent33eb0ae4f92860288cc346d84fb7edde98350a0b (diff)
[appindicator] Use better icons
Fixes #250
-rw-r--r--appindicator_integration/manifest.ini2
-rw-r--r--appindicator_integration/plugin.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/appindicator_integration/manifest.ini b/appindicator_integration/manifest.ini
index 7effae3..bf1636e 100644
--- a/appindicator_integration/manifest.ini
+++ b/appindicator_integration/manifest.ini
@@ -1,7 +1,7 @@
[info]
name: Appindicator integration
short_name: appindicator_integration
-version: 0.1.6
+version: 0.1.7
description: This plugin integrates Gajim with the appindicator. You must have python-appindicator (and Gajim obviously) installed to enable this plugin.<br/>
Rewriten from Ubuntu Ayatana Integration plugin
homepage: http://trac-plugins.gajim.org/wiki/AppindicatorSupportPlugin
diff --git a/appindicator_integration/plugin.py b/appindicator_integration/plugin.py
index 7d03c98..01fd67c 100644
--- a/appindicator_integration/plugin.py
+++ b/appindicator_integration/plugin.py
@@ -46,9 +46,9 @@ class AppindicatorIntegrationPlugin(GajimPlugin):
self.events = {}
- self.attention_icon = "tray-message"
- self.online_icon = "tray-online"
- self.offline_icon = "tray-offline"
+ self.attention_icon = "mail-unread"
+ self.online_icon = "user-available"
+ self.offline_icon = "user-offline"
self.connected = 0
self.connect_menu_item = gtk.MenuItem('Connect')