├── .gitignore ├── .travis.yml ├── AUTHORS ├── Build.md ├── COPYING ├── COPYING.GPL2 ├── COPYING.LGPL2.1 ├── ChangeLog ├── README.md ├── cmake ├── FindGirCompiler.cmake ├── FindVala.cmake ├── GObjectIntrospectionMacros.cmake ├── GSettings.cmake ├── ParseArguments.cmake ├── README ├── README.Vala.rst ├── Tests.cmake ├── Translations.cmake ├── Uninstall.cmake ├── ValaPrecompile.cmake └── ValaVersion.cmake ├── data ├── Indicator.css ├── gresource.xml ├── gschema.xml ├── icons │ ├── 16 │ │ └── io.github.ellie_commons.indicator-synapse.png │ ├── 24 │ │ └── io.github.ellie_commons.indicator-synapse.png │ ├── 32 │ │ └── io.github.ellie_commons.indicator-synapse.png │ ├── 48 │ │ └── io.github.ellie_commons.indicator-synapse.png │ └── io.github.ellie_commons.indicator-synapse.svg ├── io.github.ellie_commons.indicator-synapse ├── io.github.ellie_commons.indicator-synapse.desktop ├── meson.build ├── metainfo.xml └── screenshot.png ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source │ └── format ├── io.github.ellie-commons.wingpanel-indicator-synapse_1.0.0_amd64.deb ├── meson.build ├── po ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── ar.po ├── be.po ├── bg.po ├── ca.po ├── ca@valencia.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fi.po ├── fr.po ├── gl.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── la.po ├── list ├── lt.po ├── lv.po ├── ml.po ├── nb.po ├── nds.po ├── nl.po ├── nn.po ├── oc.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sl.po ├── sr.po ├── sv.po ├── sw.po ├── synapse.pot ├── te.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po ├── src ├── CMakeLists.txt ├── Makefile.am ├── core │ ├── Makefile.am │ ├── common-actions.vala │ ├── config-service.vala │ ├── data-sink.vala │ ├── dbus-service.vala │ ├── desktop-file-service.vala │ ├── match.vala │ ├── plugin.vala │ ├── query.vala │ ├── relevancy-backend-zg.vala │ ├── relevancy-service.vala │ ├── result-set.vala │ ├── utils.vala │ └── volume-service.vala ├── indicator │ ├── AutomaticScrollBox.vala │ ├── Makefile.am │ ├── indicator-search.c │ ├── indicator-search.h │ ├── main.vala │ ├── match-item.vala │ ├── menu.vala │ └── selectable-list.vala ├── plugins │ ├── Makefile.am │ ├── banshee-plugin.vala │ ├── calculator-plugin.vala │ ├── chat-actions-plugin.vala │ ├── chromium-plugin.vala │ ├── command-plugin.vala │ ├── desktop-file-plugin.vala │ ├── devhelp-search.vala │ ├── dictionary.vala │ ├── directory-plugin.vala │ ├── file-op-plugin.vala │ ├── filezilla-plugin.vala │ ├── gnome-screensaver-plugin.vala │ ├── gnome-session-plugin.vala │ ├── hello-world-plugin.vala │ ├── hybrid-search-plugin.vala │ ├── imgur-plugin.vala │ ├── launchpad-plugin.vala │ ├── locate-plugin.vala │ ├── opensearch.vala │ ├── pastebin-plugin.vala │ ├── pidgin-plugin.vala │ ├── rhythmbox-plugin.vala │ ├── selection-plugin.vala │ ├── ssh-plugin.vala │ ├── system-management.vala │ ├── test-slow-plugin.vala │ ├── wolframalpha-plugin.vala │ ├── xnoise-media-player-plugin.vala │ ├── zeitgeist-plugin.vala │ └── zeitgeist-related.vala ├── tile-view │ ├── Makefile.am │ ├── abstract-tile-object.vala │ ├── tile-view.vala │ ├── tile.vala │ └── wrap-label.vala └── ui │ ├── Makefile.am │ ├── category.vala │ ├── cmd-line.vala │ ├── controller.vala │ ├── icon-cache-service.vala │ ├── inspector.vala │ ├── interfaces.vala │ ├── keybindings.vala │ ├── model.vala │ ├── settings.vala │ ├── synapse-main.vala │ ├── utils.vala │ ├── view-base.vala │ ├── view-default.vala │ ├── view-doish.vala │ ├── view-essential.vala │ ├── view-side-doish.vala │ ├── view-virgilio.vala │ ├── widgets-matchlistview.vala │ └── widgets.vala └── vapi ├── Makefile.am ├── config.vapi └── indicator3-0.4.vapi /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/AUTHORS -------------------------------------------------------------------------------- /Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/Build.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/COPYING.GPL2 -------------------------------------------------------------------------------- /COPYING.LGPL2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/COPYING.LGPL2.1 -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindGirCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/FindGirCompiler.cmake -------------------------------------------------------------------------------- /cmake/FindVala.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/FindVala.cmake -------------------------------------------------------------------------------- /cmake/GObjectIntrospectionMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/GObjectIntrospectionMacros.cmake -------------------------------------------------------------------------------- /cmake/GSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/GSettings.cmake -------------------------------------------------------------------------------- /cmake/ParseArguments.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/ParseArguments.cmake -------------------------------------------------------------------------------- /cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/README -------------------------------------------------------------------------------- /cmake/README.Vala.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/README.Vala.rst -------------------------------------------------------------------------------- /cmake/Tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/Tests.cmake -------------------------------------------------------------------------------- /cmake/Translations.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/Translations.cmake -------------------------------------------------------------------------------- /cmake/Uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/Uninstall.cmake -------------------------------------------------------------------------------- /cmake/ValaPrecompile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/ValaPrecompile.cmake -------------------------------------------------------------------------------- /cmake/ValaVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/cmake/ValaVersion.cmake -------------------------------------------------------------------------------- /data/Indicator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/Indicator.css -------------------------------------------------------------------------------- /data/gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/gresource.xml -------------------------------------------------------------------------------- /data/gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/gschema.xml -------------------------------------------------------------------------------- /data/icons/16/io.github.ellie_commons.indicator-synapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/icons/16/io.github.ellie_commons.indicator-synapse.png -------------------------------------------------------------------------------- /data/icons/24/io.github.ellie_commons.indicator-synapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/icons/24/io.github.ellie_commons.indicator-synapse.png -------------------------------------------------------------------------------- /data/icons/32/io.github.ellie_commons.indicator-synapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/icons/32/io.github.ellie_commons.indicator-synapse.png -------------------------------------------------------------------------------- /data/icons/48/io.github.ellie_commons.indicator-synapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/icons/48/io.github.ellie_commons.indicator-synapse.png -------------------------------------------------------------------------------- /data/icons/io.github.ellie_commons.indicator-synapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/icons/io.github.ellie_commons.indicator-synapse.svg -------------------------------------------------------------------------------- /data/io.github.ellie_commons.indicator-synapse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/io.github.ellie_commons.indicator-synapse -------------------------------------------------------------------------------- /data/io.github.ellie_commons.indicator-synapse.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/io.github.ellie_commons.indicator-synapse.desktop -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/metainfo.xml -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/data/screenshot.png -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /io.github.ellie-commons.wingpanel-indicator-synapse_1.0.0_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/io.github.ellie-commons.wingpanel-indicator-synapse_1.0.0_amd64.deb -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/la.po -------------------------------------------------------------------------------- /po/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/list -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/nds.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/sw.po -------------------------------------------------------------------------------- /po/synapse.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/synapse.pot -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/te.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/Makefile.am -------------------------------------------------------------------------------- /src/core/common-actions.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/common-actions.vala -------------------------------------------------------------------------------- /src/core/config-service.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/config-service.vala -------------------------------------------------------------------------------- /src/core/data-sink.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/data-sink.vala -------------------------------------------------------------------------------- /src/core/dbus-service.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/dbus-service.vala -------------------------------------------------------------------------------- /src/core/desktop-file-service.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/desktop-file-service.vala -------------------------------------------------------------------------------- /src/core/match.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/match.vala -------------------------------------------------------------------------------- /src/core/plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/plugin.vala -------------------------------------------------------------------------------- /src/core/query.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/query.vala -------------------------------------------------------------------------------- /src/core/relevancy-backend-zg.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/relevancy-backend-zg.vala -------------------------------------------------------------------------------- /src/core/relevancy-service.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/relevancy-service.vala -------------------------------------------------------------------------------- /src/core/result-set.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/result-set.vala -------------------------------------------------------------------------------- /src/core/utils.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/utils.vala -------------------------------------------------------------------------------- /src/core/volume-service.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/core/volume-service.vala -------------------------------------------------------------------------------- /src/indicator/AutomaticScrollBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/AutomaticScrollBox.vala -------------------------------------------------------------------------------- /src/indicator/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/Makefile.am -------------------------------------------------------------------------------- /src/indicator/indicator-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/indicator-search.c -------------------------------------------------------------------------------- /src/indicator/indicator-search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/indicator-search.h -------------------------------------------------------------------------------- /src/indicator/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/main.vala -------------------------------------------------------------------------------- /src/indicator/match-item.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/match-item.vala -------------------------------------------------------------------------------- /src/indicator/menu.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/menu.vala -------------------------------------------------------------------------------- /src/indicator/selectable-list.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/indicator/selectable-list.vala -------------------------------------------------------------------------------- /src/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/Makefile.am -------------------------------------------------------------------------------- /src/plugins/banshee-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/banshee-plugin.vala -------------------------------------------------------------------------------- /src/plugins/calculator-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/calculator-plugin.vala -------------------------------------------------------------------------------- /src/plugins/chat-actions-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/chat-actions-plugin.vala -------------------------------------------------------------------------------- /src/plugins/chromium-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/chromium-plugin.vala -------------------------------------------------------------------------------- /src/plugins/command-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/command-plugin.vala -------------------------------------------------------------------------------- /src/plugins/desktop-file-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/desktop-file-plugin.vala -------------------------------------------------------------------------------- /src/plugins/devhelp-search.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/devhelp-search.vala -------------------------------------------------------------------------------- /src/plugins/dictionary.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/dictionary.vala -------------------------------------------------------------------------------- /src/plugins/directory-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/directory-plugin.vala -------------------------------------------------------------------------------- /src/plugins/file-op-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/file-op-plugin.vala -------------------------------------------------------------------------------- /src/plugins/filezilla-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/filezilla-plugin.vala -------------------------------------------------------------------------------- /src/plugins/gnome-screensaver-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/gnome-screensaver-plugin.vala -------------------------------------------------------------------------------- /src/plugins/gnome-session-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/gnome-session-plugin.vala -------------------------------------------------------------------------------- /src/plugins/hello-world-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/hello-world-plugin.vala -------------------------------------------------------------------------------- /src/plugins/hybrid-search-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/hybrid-search-plugin.vala -------------------------------------------------------------------------------- /src/plugins/imgur-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/imgur-plugin.vala -------------------------------------------------------------------------------- /src/plugins/launchpad-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/launchpad-plugin.vala -------------------------------------------------------------------------------- /src/plugins/locate-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/locate-plugin.vala -------------------------------------------------------------------------------- /src/plugins/opensearch.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/opensearch.vala -------------------------------------------------------------------------------- /src/plugins/pastebin-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/pastebin-plugin.vala -------------------------------------------------------------------------------- /src/plugins/pidgin-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/pidgin-plugin.vala -------------------------------------------------------------------------------- /src/plugins/rhythmbox-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/rhythmbox-plugin.vala -------------------------------------------------------------------------------- /src/plugins/selection-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/selection-plugin.vala -------------------------------------------------------------------------------- /src/plugins/ssh-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/ssh-plugin.vala -------------------------------------------------------------------------------- /src/plugins/system-management.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/system-management.vala -------------------------------------------------------------------------------- /src/plugins/test-slow-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/test-slow-plugin.vala -------------------------------------------------------------------------------- /src/plugins/wolframalpha-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/wolframalpha-plugin.vala -------------------------------------------------------------------------------- /src/plugins/xnoise-media-player-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/xnoise-media-player-plugin.vala -------------------------------------------------------------------------------- /src/plugins/zeitgeist-plugin.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/zeitgeist-plugin.vala -------------------------------------------------------------------------------- /src/plugins/zeitgeist-related.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/plugins/zeitgeist-related.vala -------------------------------------------------------------------------------- /src/tile-view/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/tile-view/Makefile.am -------------------------------------------------------------------------------- /src/tile-view/abstract-tile-object.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/tile-view/abstract-tile-object.vala -------------------------------------------------------------------------------- /src/tile-view/tile-view.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/tile-view/tile-view.vala -------------------------------------------------------------------------------- /src/tile-view/tile.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/tile-view/tile.vala -------------------------------------------------------------------------------- /src/tile-view/wrap-label.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/tile-view/wrap-label.vala -------------------------------------------------------------------------------- /src/ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/Makefile.am -------------------------------------------------------------------------------- /src/ui/category.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/category.vala -------------------------------------------------------------------------------- /src/ui/cmd-line.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/cmd-line.vala -------------------------------------------------------------------------------- /src/ui/controller.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/controller.vala -------------------------------------------------------------------------------- /src/ui/icon-cache-service.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/icon-cache-service.vala -------------------------------------------------------------------------------- /src/ui/inspector.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/inspector.vala -------------------------------------------------------------------------------- /src/ui/interfaces.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/interfaces.vala -------------------------------------------------------------------------------- /src/ui/keybindings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/keybindings.vala -------------------------------------------------------------------------------- /src/ui/model.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/model.vala -------------------------------------------------------------------------------- /src/ui/settings.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/settings.vala -------------------------------------------------------------------------------- /src/ui/synapse-main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/synapse-main.vala -------------------------------------------------------------------------------- /src/ui/utils.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/utils.vala -------------------------------------------------------------------------------- /src/ui/view-base.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/view-base.vala -------------------------------------------------------------------------------- /src/ui/view-default.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/view-default.vala -------------------------------------------------------------------------------- /src/ui/view-doish.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/view-doish.vala -------------------------------------------------------------------------------- /src/ui/view-essential.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/view-essential.vala -------------------------------------------------------------------------------- /src/ui/view-side-doish.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/view-side-doish.vala -------------------------------------------------------------------------------- /src/ui/view-virgilio.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/view-virgilio.vala -------------------------------------------------------------------------------- /src/ui/widgets-matchlistview.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/widgets-matchlistview.vala -------------------------------------------------------------------------------- /src/ui/widgets.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/src/ui/widgets.vala -------------------------------------------------------------------------------- /vapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/vapi/Makefile.am -------------------------------------------------------------------------------- /vapi/config.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/vapi/config.vapi -------------------------------------------------------------------------------- /vapi/indicator3-0.4.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/indicator-synapse/HEAD/vapi/indicator3-0.4.vapi --------------------------------------------------------------------------------