aboutsummaryrefslogtreecommitdiffstats
path: root/src/gtk-redshift/statusicon.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtk-redshift/statusicon.py')
-rw-r--r--src/gtk-redshift/statusicon.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gtk-redshift/statusicon.py b/src/gtk-redshift/statusicon.py
index c5c12ac..29801e8 100644
--- a/src/gtk-redshift/statusicon.py
+++ b/src/gtk-redshift/statusicon.py
@@ -60,21 +60,21 @@ def run():
else:
# Create status icon
status_icon = gtk.StatusIcon()
- status_icon.set_from_icon_name('redshift')
+ status_icon.set_from_icon_name('redshift-status-on')
status_icon.set_tooltip('Redshift')
def toggle_cb(widget, data=None):
process.send_signal(signal.SIGUSR1)
if appindicator:
if indicator.get_icon() == 'redshift':
- indicator.set_icon('redshift-idle')
+ indicator.set_icon('redshift-status-off')
else:
- indicator.set_icon('redshift')
+ indicator.set_icon('redshift-status-on')
else:
if status_icon.get_icon_name() == 'redshift':
- status_icon.set_from_icon_name('redshift-idle')
+ status_icon.set_from_icon_name('redshift-status-off')
else:
- status_icon.set_from_icon_name('redshift')
+ status_icon.set_from_icon_name('redshift-status-on')
def autostart_cb(widget, data=None):
utils.set_autostart(widget.get_active())