Schneegans / Gnome-Pie

A pie menu launcher for linux. Read the release announcement of version 0.7.2 at https://schneegans.github.io/news/2018/10/30/gnome-pie-072 Or have a look at the homepage!
http://schneegans.github.io/gnome-pie.html
MIT License
308 stars 54 forks source link

An empty indicator icon is shown in Ubuntu Mate 16.04 #139

Closed gabdub closed 6 years ago

gabdub commented 7 years ago

Hi Simon,

No indicator icon is shown in Ubuntu Mate 16.04 unless I added: gnome_shell = true; to line 78 of indicator.vala. The indicator menu work fine, though.

I don't know how to detect the mate desktop. screen.get_window_manager_name() returns "Compiz" in my setup. Any idea?

Best wishes, Gabriel

gabdub commented 7 years ago

The issue is still present in version 0.7.1.

I have to replace:

this.indicator = new AppIndicator.Indicator.with_path("Gnome-Pie", icon, AppIndicator.IndicatorCategory.APPLICATION_STATUS, path);

with:

this.indicator = new AppIndicator.Indicator("Gnome-Pie", path + "/" + icon + ".svg", AppIndicator.IndicatorCategory.APPLICATION_STATUS);

to see the icon.

Schneegans commented 7 years ago

This indicator stuff is really a mess. I will look into it.

gabdub commented 6 years ago

It's working in Ubuntu Mate 18.04 (they moved to GTK3).