Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,12 @@ install-schemas:
install -dm755 "$(DESTDIR)$(IMAGE_DIR)"
install -Dm644 "$(DEV_DATA_DIR)"/pixmaps/*.png "$(DESTDIR)$(IMAGE_DIR)/"
install -Dm644 "$(DEV_DATA_DIR)"/pixmaps/*.svg "$(DESTDIR)$(IMAGE_DIR)/"
install -dm755 "$(DESTDIR)$(PREFIX)/share/pixmaps"
install -Dm644 "$(DEV_DATA_DIR)/pixmaps/guake.png" "$(DESTDIR)$(PREFIX)/share/pixmaps/"
install -dm755 "$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps"
install -Dm644 "$(DEV_DATA_DIR)/pixmaps/guake-48.png" "$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/guake.png"
install -dm755 "$(DESTDIR)$(PREFIX)/share/icons/hicolor/64x64/apps"
install -Dm644 "$(DEV_DATA_DIR)/pixmaps/guake-64.png" "$(DESTDIR)$(PREFIX)/share/icons/hicolor/64x64/apps/guake.png"
install -dm755 "$(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps"
install -Dm644 "$(DEV_DATA_DIR)/pixmaps/guake-128.png" "$(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/guake.png"
install -dm755 "$(DESTDIR)$(SHARE_DIR)"
install -Dm644 "$(DEV_DATA_DIR)/autostart-guake.desktop" "$(DESTDIR)$(SHARE_DIR)/"
install -dm755 "$(DESTDIR)$(GLADE_DIR)"
Expand Down
4 changes: 2 additions & 2 deletions guake/guake_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ def load_schema():
else:
# TODO PORT test this on a system with app indicator
self.tray_icon = appindicator.Indicator.new(
"guake-indicator", "guake-tray", appindicator.IndicatorCategory.APPLICATION_STATUS
"guake-indicator", "guake", appindicator.IndicatorCategory.APPLICATION_STATUS
)
self.tray_icon.set_icon_full("guake-tray", _("Guake Terminal"))
self.tray_icon.set_icon_full("guake", _("Guake Terminal"))
self.tray_icon.set_status(appindicator.IndicatorStatus.ACTIVE)
menu = self.get_widget("tray-menu")
show = Gtk.MenuItem(_("Show"))
Expand Down