├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── 01_bug_report.yml │ ├── 02_feature_request.yml │ └── config.yml ├── LICENSES │ ├── AGPL-3.0 │ ├── Apache-2.0 │ ├── CC0-1.0 │ ├── GPL-2.0 │ ├── GPL-3.0 │ ├── LGPL-2.1 │ ├── LGPL-3.0 │ ├── MIT │ └── README.md ├── bug_report_creator.py ├── codeowners_creator.py ├── feature_request_creator.py └── workflows │ ├── main.yml │ └── tst.yml ├── .gitignore ├── .translation-tables ├── LINGUAS ├── README.md └── translation-tables.py ├── .typescript-declarations ├── Atk-1.0.d.ts ├── CDesktopEnums-3.0.d.ts ├── CMenu-3.0.d.ts ├── Cally-1.0.d.ts ├── Caribou-1.0.d.ts ├── Cinnamon-0.1.d.ts ├── CinnamonDesktop-3.0.d.ts ├── Clutter-1.0.d.ts ├── ClutterX11-1.0.d.ts ├── Cogl-1.0.d.ts ├── Cvc-1.0.d.ts ├── GLib-2.0.d.ts ├── GModule-2.0.d.ts ├── GObject-2.0.d.ts ├── Gdk-3.0.d.ts ├── GdkPixbuf-2.0.d.ts ├── Gio-2.0.d.ts ├── Graphene-1.0.d.ts ├── Gst-1.0.d.ts ├── Gtk-3.0.d.ts ├── HarfBuzz-0.0.d.ts ├── Meta-3.0.d.ts ├── Pango-1.0.d.ts ├── README.md ├── Soup-2.4.d.ts ├── St-1.0.d.ts ├── WebKit2-4.0.d.ts ├── XApp-1.0.d.ts ├── cairo-1.0.d.ts ├── cinnamon │ ├── globals.d.ts │ ├── misc │ │ ├── config.d.ts │ │ ├── gnomeSession.d.ts │ │ ├── interfaces.d.ts │ │ ├── params.d.ts │ │ ├── pointerTracker.d.ts │ │ ├── signalManager.d.ts │ │ └── util.d.ts │ └── ui │ │ ├── accessibility.d.ts │ │ ├── applet.d.ts │ │ ├── appletManager.d.ts │ │ ├── backgroundManager.d.ts │ │ ├── boxpointer.d.ts │ │ ├── cinnamonDBus.d.ts │ │ ├── desklet.d.ts │ │ ├── deskletManager.d.ts │ │ ├── dnd.d.ts │ │ ├── edgeFlip.d.ts │ │ ├── environment.d.ts │ │ ├── expo.d.ts │ │ ├── hotCorner.d.ts │ │ ├── keybindings.d.ts │ │ ├── keyboard.d.ts │ │ ├── layout.d.ts │ │ ├── lightbox.d.ts │ │ ├── lookingGlass.d.ts │ │ ├── magnifier.d.ts │ │ ├── main.d.ts │ │ ├── messageTray.d.ts │ │ ├── modalDialog.d.ts │ │ ├── notificationDaemon.d.ts │ │ ├── osdWindow.d.ts │ │ ├── overrides.d.ts │ │ ├── overview.d.ts │ │ ├── panel.d.ts │ │ ├── placesManager.d.ts │ │ ├── popupMenu.d.ts │ │ ├── runDialog.d.ts │ │ ├── search.d.ts │ │ ├── searchProviderManager.d.ts │ │ ├── settings.d.ts │ │ ├── slider.d.ts │ │ ├── slideshowManager.d.ts │ │ ├── soundManager.d.ts │ │ ├── statusIconDispatcher.d.ts │ │ ├── systray.d.ts │ │ ├── themeManager.d.ts │ │ ├── tooltips.d.ts │ │ ├── tweener.d.ts │ │ ├── windowAttentionHandler.d.ts │ │ ├── windowManager.d.ts │ │ └── xdndHandler.d.ts ├── manual-overrides │ ├── ByteArray.d.ts │ ├── Clutter-1.0.d.ts │ ├── GLib-2.0.d.ts │ ├── GObject-2.0.d.ts │ ├── Gio-2.0.d.ts │ ├── Soup-2.4.d.ts │ ├── St-1.0.d.ts │ └── cairo-1.0.d.ts ├── tsconfig.json ├── xfixes-4.0.d.ts ├── xlib-2.0.d.ts └── xrandr-1.3.d.ts ├── AlwaysOn@krivetochka ├── files │ └── AlwaysOn@krivetochka │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── lapt_color.svg │ │ ├── lapt_color_empty.svg │ │ ├── lapt_symb.svg │ │ └── lapt_symb_empty.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── AlwaysOn@krivetochka.pot │ │ ├── ca.po │ │ ├── cn.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── AutostartPrograms@spacy01 ├── files │ └── AutostartPrograms@spacy01 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── AutostartPrograms@spacy01.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── BgRadio@spacy01 ├── README.md ├── files │ └── BgRadio@spacy01 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── mpv │ │ ├── input.conf │ │ └── mpv.conf │ │ └── po │ │ ├── BgRadio@spacy01.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── Bps@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── Bps@claudiux │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── bps-symbolic.png │ │ ├── bps-symbolic.svg │ │ ├── download-symbolic.svg │ │ ├── forbidden-symbolic.svg │ │ ├── network-transmit-receive-symbolic.svg │ │ ├── screenshot.png │ │ ├── screenshot.xcf │ │ └── upload-symbolic.svg │ │ ├── lib │ │ ├── appletGui.js │ │ ├── cssStylization.js │ │ ├── graphLine.js │ │ ├── mainloopTools.js │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── po │ │ ├── Bps@claudiux.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── scripts │ │ ├── get-network-data.sh │ │ └── unplugged-network-devices.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── COPYING ├── CassiaWindowList@klangman ├── CHANGELOG.md ├── README.md ├── files │ └── CassiaWindowList@klangman │ │ ├── 4.0 │ │ ├── applet.js │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 6.0 │ │ ├── applet.js │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── LICENSE │ │ ├── SetupWizard.py │ │ ├── SetupWizard.ui │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── CassiaWindowList@klangman.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── setupWizard ├── info.json └── screenshot.png ├── CinnVIIStarkMenu@NikoKrause ├── CHANGELOG.md ├── README.md ├── files │ └── CinnVIIStarkMenu@NikoKrause │ │ ├── 2.6 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 3.4 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 4.2 │ │ ├── appUtils.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ └── po │ │ ├── CinnVIIStarkMenu@NikoKrause.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ku.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── CinnaMame@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── CinnaMame@claudiux │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── CinnaMame-symbolic.svg │ │ └── CinnaMame.png │ │ ├── metadata.json │ │ ├── po │ │ ├── CinnaMame@claudiux.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ ├── scripts │ │ ├── ensure_mame.sh │ │ └── install_mame.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── Cinnamenu@json ├── COPYING ├── README.md ├── changelog.md ├── files │ └── Cinnamenu@json │ │ ├── 3.2 │ │ ├── CREDITS │ │ ├── applet.js │ │ ├── buttons.js │ │ ├── constants.js │ │ ├── fuzzy.js │ │ ├── icon.png │ │ ├── placeDisplay.js │ │ ├── settings-schema.json │ │ ├── store.js │ │ ├── store_mozjs24.js │ │ ├── stylesheet.css │ │ ├── utils.js │ │ ├── webChromium.js │ │ ├── webFirefox.js │ │ ├── webGoogleChrome.js │ │ └── webOpera.js │ │ ├── 4.0 │ │ ├── CREDITS │ │ ├── applet.js │ │ ├── appsview.js │ │ ├── browserBookmarks.js │ │ ├── browserHistory.js │ │ ├── categoriesview.js │ │ ├── contextmenu.js │ │ ├── display.js │ │ ├── emoji.js │ │ ├── getFavicons.py │ │ ├── icon.png │ │ ├── mint-remove-application.py │ │ ├── resizer.js │ │ ├── search.py │ │ ├── searchHistory.py │ │ ├── settings-schema.json │ │ ├── settings.js │ │ ├── sidebar.js │ │ ├── stylesheet.css │ │ ├── suggestions.js │ │ ├── utils.js │ │ └── wikipediaSearch.js │ │ ├── 5.8 │ │ ├── CREDITS │ │ ├── applet.js │ │ ├── appsview.js │ │ ├── browserBookmarks.js │ │ ├── browserHistory.js │ │ ├── categoriesview.js │ │ ├── contextmenu.js │ │ ├── display.js │ │ ├── emoji.js │ │ ├── getFavicons.py │ │ ├── icon.png │ │ ├── search.py │ │ ├── searchHistory.py │ │ ├── settings-schema.json │ │ ├── sidebar.js │ │ ├── stylesheet.css │ │ ├── suggestions.js │ │ ├── utils.js │ │ └── wikipediaSearch.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── ask.png │ │ ├── bing_icon.png │ │ ├── brave.png │ │ ├── calc.png │ │ ├── duckgo_icon.png │ │ ├── ecosia.png │ │ ├── google_icon.png │ │ ├── qwant.png │ │ ├── search.png │ │ ├── startpage.png │ │ └── yahoo_icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── Cinnamenu@json.pot │ │ ├── ar.po │ │ ├── bg.po │ │ ├── bn.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── et.po │ │ ├── eu.po │ │ ├── fa.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── hi.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── id.po │ │ ├── is.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── lt.po │ │ ├── lv.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── sw.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── ur.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json ├── locale.sh └── screenshot.png ├── CommandRunner@appdevsw ├── files │ └── CommandRunner@appdevsw │ │ ├── applet.js │ │ ├── appletgui.js │ │ ├── asyncprocess.js │ │ ├── cmdrun0.sh │ │ ├── cmdrun1.sh │ │ ├── cmdrun2.sh │ │ ├── cmdrun3.sh │ │ ├── cmdrun4.sh │ │ ├── cmdrunner.js │ │ ├── debug.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── CommandRunner@appdevsw.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── simplexml.js │ │ └── timer.js ├── info.json └── screenshot.png ├── CustomApplicationsMenu@LLOBERA ├── README.md ├── files │ └── CustomApplicationsMenu@LLOBERA │ │ ├── ABOUT.txt │ │ ├── README.md │ │ ├── RELEASE.txt │ │ ├── TODO.txt │ │ ├── applet.js │ │ ├── applications.json │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── CustomApplicationsMenu@LLOBERA.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── screenshot.png ├── info.json └── screenshot.png ├── CustomPlaces@Nicolas01 ├── README.md ├── files │ └── CustomPlaces@Nicolas01 │ │ ├── ABOUT.txt │ │ ├── README.txt │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── places.json │ │ ├── po │ │ ├── CustomPlaces@Nicolas01.pot │ │ ├── ca.po │ │ ├── cn.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── popupImageLeftMenuItem.js ├── info.json └── screenshot.png ├── Direct@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── Direct@claudiux │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── Direct@claudiux.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── search.py │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── Exit@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── Exit@claudiux │ │ ├── 5.4 │ │ ├── applet.js │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── mainloopTools.js │ │ ├── screensaverInhibitor.js │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── Exit@claudiux.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── scripts │ │ ├── can-shutdown.sh │ │ ├── get-brightness.sh │ │ ├── get-monitors-info.sh │ │ ├── mice.sh │ │ ├── test.txt │ │ └── test2.txt ├── info.json └── screenshot.png ├── Gears@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── Gears@claudiux │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── gears-active-symbolic.svg │ │ ├── gears-active.png │ │ ├── gears-inactive-symbolic.svg │ │ ├── gears-inactive.png │ │ ├── gears-inactive.xcf │ │ ├── gears-symbolic.svg │ │ └── icon.xcf │ │ ├── lib │ │ └── mainloopTools.js │ │ ├── metadata.json │ │ ├── po │ │ ├── Gears@claudiux.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── scripts │ │ └── showlogs.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── IntelTurboBoost@wsmenezes ├── README.md ├── files │ └── IntelTurboBoost@wsmenezes │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── off.svg │ │ └── on.svg │ │ ├── metadata.json │ │ └── po │ │ ├── IntelTurboBoost@wsmenezes.pot │ │ ├── ca.po │ │ ├── cn.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── InternetTimeApplet@stefan ├── README.md ├── files │ └── InternetTimeApplet@stefan │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── InternetTimeApplet@stefan.pot │ │ ├── ca.po │ │ ├── cn.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── MessagingMenuV3@blub ├── files │ └── MessagingMenuV3@blub │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── MessagingMenuV3@blub.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── Mint-Unsplash-Background@omidmaldar ├── README.md ├── files │ └── Mint-Unsplash-Background@omidmaldar │ │ ├── applet.js │ │ ├── background │ │ ├── download.sh │ │ ├── icon.png │ │ ├── icons │ │ └── unsplash.png │ │ ├── metadata.json │ │ └── po │ │ ├── Mint-Unsplash-Background@omidmaldar.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── MonitorInputSource@klangman ├── CHANGELOG.md ├── README.md ├── files │ └── MonitorInputSource@klangman │ │ ├── LICENSE │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── MonitorInputSource@klangman.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── MuteToggler@jebeaudet.com ├── README.md ├── files │ └── MuteToggler@jebeaudet.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── muted.svg │ │ └── not_muted.svg │ │ ├── lib │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── po │ │ ├── MuteToggler@jebeaudet.com.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── NightLightSwitch@claudiux ├── CHANGELOG.md ├── NightLightModeOFF.png ├── NightLightModeON.png ├── README.md ├── files │ └── NightLightSwitch@claudiux │ │ ├── 6.4 │ │ └── applet.js │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── nightlight-disabled-symbolic.svg │ │ ├── nightlight-symbolic.svg │ │ ├── screenshot.png │ │ └── screenshot.xcf │ │ ├── metadata.json │ │ └── po │ │ ├── NightLightSwitch@claudiux.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── PDFManager@cinnamon.org ├── files │ └── PDFManager@cinnamon.org │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── pdf-symbolic.svg │ │ ├── metadata.json │ │ ├── pdf-manager.py │ │ └── po │ │ ├── PDFManager@cinnamon.org.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── PanelTranslator@klangman ├── CHANGELOG.md ├── README.md ├── files │ └── PanelTranslator@klangman │ │ ├── LICENSE │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── panel-translator-symbolic.svg │ │ ├── languages_0_9_6_12.js │ │ ├── metadata.json │ │ ├── po │ │ ├── PanelTranslator@klangman.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── ProcessMemoryMonitor@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── ProcessMemoryMonitor@claudiux │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── lib │ │ └── mainloopTools.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ProcessMemoryMonitor@claudiux.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ ├── screenshot.xcf │ │ ├── scripts │ │ ├── get-mem.sh │ │ └── get-pid-from-process-name.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── README.md ├── Radio3.0@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── Radio3.0@claudiux │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── applet.js │ │ ├── help │ │ ├── MANUAL.html │ │ ├── MANUAL.md │ │ ├── fr │ │ │ ├── MANUAL.html │ │ │ └── MANUAL.md │ │ └── tr │ │ │ ├── MANUAL.html │ │ │ ├── MANUAL.md │ │ │ └── help-text.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── animated-symbolic.svg │ │ ├── audio-volume-webradioreceiver-high-symbolic.svg │ │ ├── audio-volume-webradioreceiver-low-symbolic.svg │ │ ├── audio-volume-webradioreceiver-medium-symbolic.svg │ │ ├── audio-volume-webradioreceiver-muted-symbolic.svg │ │ ├── clock-webradioreceiver-symbolic.svg │ │ ├── disk-full-symbolic.svg │ │ ├── folder-music-symbolic.svg │ │ ├── icon.svg │ │ ├── music-folder-full-symbolic.svg │ │ ├── webradioreceiver-fullcolor.png │ │ ├── webradioreceiver-symbolic.svg │ │ ├── yt-symbolic.svg │ │ └── yt.svg │ │ ├── lib │ │ ├── checkDependencies.js │ │ ├── checkTranslations.js │ │ ├── common.js │ │ ├── convertcountrycode.py │ │ ├── countrycode.csv │ │ ├── countrycode.json │ │ ├── files.js │ │ ├── filesCsv.js │ │ ├── filesJson.js │ │ ├── filesM3u.js │ │ ├── filesPls.js │ │ ├── filesXspf.js │ │ ├── fixedEncodeURIComponent.js │ │ ├── htmlEncodeDecode.js │ │ ├── httpLib.js │ │ ├── links.txt │ │ ├── mainloopTools.js │ │ ├── mpv-commands.txt │ │ ├── otherSpawnCommandLineAsync.js │ │ ├── radioSearch.js │ │ ├── screensaverInhibitor.js │ │ ├── shoutcast-lists.js │ │ ├── shoutcast.html │ │ ├── shoutcast.js │ │ ├── text-wrap.js │ │ ├── to-string.js │ │ ├── util.js │ │ ├── volumeslider.js │ │ ├── xml2json-AUTHORS │ │ ├── xml2json-LICENSE │ │ ├── xml2json-README.md │ │ └── xml2json.min.js │ │ ├── metadata.json │ │ ├── po │ │ ├── Radio3.0@claudiux.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── english-french.odt │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── is.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── radiodb │ │ ├── language-replace.csv │ │ ├── server-list.json │ │ └── tag-replace.csv │ │ ├── screenshot.png │ │ ├── screenshot_OLD.png │ │ ├── screenshot_OLD.xcf │ │ ├── screenshot_ORIG.png │ │ ├── scripts │ │ ├── all_tags.json │ │ ├── commands.txt │ │ ├── create-db-server-list.sh │ │ ├── create-job.sh │ │ ├── createStationsList.py │ │ ├── db-server-list.sh │ │ ├── del_song_arts.sh │ │ ├── download-favicon.sh │ │ ├── ensure-mpv-config.sh │ │ ├── fix-desklet-translations.sh │ │ ├── get-score.sh │ │ ├── get_song_art.sh │ │ ├── mpvSchedJob.lua │ │ ├── mpvWatchBitrate.sh │ │ ├── mpvWatchTitle.lua │ │ ├── mpvWatchTitle.sh │ │ ├── progress.sh │ │ ├── radioSchedJob.lua │ │ ├── serverlist_python3.py │ │ ├── stop-mpv-else-recordings.sh │ │ ├── tink.sh │ │ ├── update-yt-dlp.sh │ │ └── xlet_settings.py │ │ ├── settings-schema.json │ │ ├── sounds │ │ └── tink.ogg │ │ ├── stations │ │ ├── 100 Greatest Heavy Metal.xspf │ │ ├── Classic Metal Radio.xspf │ │ ├── Dance Wave Retro!.xspf │ │ ├── Dance Wave!.xspf │ │ ├── DeepeRadioStation.xspf │ │ ├── Destination SPA.xspf │ │ ├── EMPTY_LIST.csv │ │ ├── EMPTY_LIST.json │ │ ├── EXAMPLE_OF_RADIO_LIST.csv │ │ ├── Example.csv │ │ ├── Example2.csv │ │ ├── List of stations.txt │ │ ├── Maxi France.xspf │ │ ├── Metalzone.GR Radio.xspf │ │ ├── Otto's Baroque Music (1.fm).m3u │ │ ├── Otto's Baroque Music (1.fm).pls │ │ ├── Otto's Baroque Music (1.fm).xspf │ │ ├── Radio3.0_EMPTY_LIST.json │ │ ├── Radio3.0_EXAMPLES.json │ │ ├── Rock Antenne - Heavy Metal.xspf │ │ ├── Rock Melodic Radio - AOR MELODIC ROCK HARD ROCK.xspf │ │ ├── The Metal Plague.xspf │ │ ├── Thunder Radio Cologne.xspf │ │ ├── Zwischen-Welten Radio.xspf │ │ └── allstations │ │ │ └── command-load-allstations.txt │ │ └── xs │ │ ├── __init__.py │ │ ├── bin │ │ ├── R3JsonSettingsWidgets.py │ │ ├── R3TreeListWidgets.py │ │ ├── __init__.py │ │ └── util.py │ │ ├── config.py │ │ └── xlet-settings.py ├── info.json └── screenshot.png ├── SW++@mohammad-sn ├── files │ └── SW++@mohammad-sn │ │ ├── applet.js │ │ ├── cinnamon-expo-symbolic.svg │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── SW++@mohammad-sn.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── ScreenLocker@tuuxx ├── files │ └── ScreenLocker@tuuxx │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ScreenLocker@tuuxx.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── ScreenShot+RecordDesktop@tech71 ├── README.md ├── files │ └── ScreenShot+RecordDesktop@tech71 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ScreenShot+RecordDesktop@tech71.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── is.po │ │ ├── it.po │ │ ├── ko.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── recorder.sh │ │ ├── screencapture.sh │ │ ├── screencapturesound.sh │ │ ├── screencapturesoundwindow.sh │ │ └── screencapturewindow.sh ├── info.json └── screenshot.png ├── ScreenShot@tech71 ├── files │ └── ScreenShot@tech71 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ScreenShot@tech71.pot │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── Sensors@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── Sensors@claudiux │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.pdf │ │ ├── applet.js │ │ ├── fonts │ │ └── Symbola │ │ │ └── README.txt │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── fan.png │ │ ├── intrusion.png │ │ ├── temperature.png │ │ └── voltage.png │ │ ├── lib │ │ ├── checkDependencies.js │ │ ├── constants.js │ │ ├── mainloopTools.js │ │ ├── sensorsReaper.js │ │ ├── to-string.js │ │ └── util.js │ │ ├── metadata.json │ │ ├── po │ │ ├── Sensors@claudiux.pot │ │ ├── ca.po │ │ ├── cn.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ru.po │ │ ├── tr.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ ├── scripts │ │ ├── DisksDaemon.sh │ │ ├── SensorsDaemon.sh │ │ ├── commands.txt │ │ ├── detect_temp.sh │ │ ├── gen-customexec.conf-hddtemp.sh │ │ ├── get_disk_list.sh │ │ ├── get_disk_temp.sh │ │ ├── get_disk_temp_ORIG.sh │ │ ├── get_distro.js │ │ ├── install_symbola_on_Arch.sh │ │ ├── is_hddtemp_usable_by_user.sh │ │ ├── log_crit_value.sh │ │ ├── log_high_value.sh │ │ ├── make_hddtemp_usable_by_user.sh │ │ ├── make_smartctl_usable_by_sudoers.sh │ │ ├── pkexec_make_hddtemp_usable_by_user.sh │ │ ├── pkexec_make_smartctl_usable_by_sudoers.sh │ │ ├── sensors_detected.json │ │ ├── show_sensor_values.sh │ │ └── xs.py │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── SettingsPlus@lusito.info ├── files │ └── SettingsPlus@lusito.info │ │ ├── applet.js │ │ ├── config.json │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── SettingsPlus@lusito.info.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── xkill.py ├── info.json └── screenshot.png ├── ShellTools@abgoyal ├── files │ └── ShellTools@abgoyal │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ShellTools@abgoyal.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── scripts │ │ ├── processTools.sh │ │ └── tools.json.in ├── info.json └── screenshot.png ├── ShutdownApplet@DeathMD ├── files │ └── ShutdownApplet@DeathMD │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ShutdownApplet@DeathMD.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── ShutdownMenuWithIcons@LLOBERA ├── files │ └── ShutdownMenuWithIcons@LLOBERA │ │ ├── ABOUT.txt │ │ ├── README.txt │ │ ├── RELEASE.txt │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ShutdownMenuWithIcons@LLOBERA.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── popupImageLeftMenuItem.js │ │ ├── screenshot.png │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── SpiceSpy@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── SpiceSpy@claudiux │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── cinnamon-symbolic.png │ │ ├── cinnamon-symbolic.svg │ │ ├── cinnamon.png │ │ ├── cinnamon.svg │ │ ├── nb-issues-symbolic.svg │ │ ├── nb-translations-symbolic.svg │ │ ├── spices-actions-symbolic.svg │ │ ├── spices-applets-symbolic.svg │ │ ├── spices-comments-symbolic.svg │ │ ├── spices-desklets-symbolic.svg │ │ ├── spices-extensions-symbolic.svg │ │ └── spices-themes-symbolic.svg │ │ ├── lib │ │ ├── httpLib.js │ │ ├── mainloopTools.js │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── po │ │ ├── SpiceSpy@claudiux.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ ├── screenshot.xcf │ │ ├── scripts │ │ ├── commands.txt │ │ ├── copy-png-files.sh │ │ ├── get-issues.sh │ │ ├── get_issues_json.sh │ │ ├── spices-cache-init.sh │ │ └── spices-cache-updater.py │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── SpicesUpdate@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── SpicesUpdate@claudiux │ │ ├── 2.8 │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 3.8 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ ├── spices-update-symbolic.svg │ │ └── stylesheet.css │ │ ├── 4.2 │ │ ├── SU_messageTray.js │ │ ├── applet.js │ │ ├── constants.js │ │ ├── icon.png │ │ ├── notifications_from_46.js │ │ ├── notifications_upto_44.js │ │ ├── settings-schema.json │ │ ├── spices-update-symbolic.svg │ │ ├── stylesheet.css │ │ └── utils.js │ │ ├── 4.6 │ │ ├── SU_messageTray.js │ │ ├── applet.js │ │ ├── caracteres_speciaux.odt │ │ ├── constants.js │ │ ├── icon.png │ │ ├── notifications_from_46.js │ │ ├── notifications_upto_44.js │ │ ├── settings-schema.json │ │ ├── spices-update-symbolic.svg │ │ ├── stylesheet.css │ │ └── utils.js │ │ ├── 4.8 │ │ ├── SU_messageTray.js │ │ ├── applet.js │ │ ├── caracteres_speciaux.odt │ │ ├── constants.js │ │ ├── icon.png │ │ ├── notifications_from_46.js │ │ ├── notifications_upto_44.js │ │ ├── settings-schema.json │ │ ├── spices-update-symbolic.svg │ │ ├── stylesheet.css │ │ ├── to-string.js │ │ └── utils.js │ │ ├── 5.6 │ │ ├── SU_messageTray.js │ │ ├── applet.js │ │ ├── caracteres_speciaux.odt │ │ ├── constants.js │ │ ├── icon.png │ │ ├── notifications_from_46.js │ │ ├── notifications_upto_44.js │ │ ├── settings-schema.json │ │ ├── spices-update-symbolic.svg │ │ ├── stylesheet.css │ │ ├── to-string.js │ │ └── utils.js │ │ ├── 6.0 │ │ ├── applet.js │ │ ├── applet_OLD.js │ │ ├── caracteres_speciaux.odt │ │ ├── constants.js │ │ ├── httpLib.js │ │ ├── icon.png │ │ ├── mainloopTools.js │ │ ├── notifications.js │ │ ├── settings-schema.json │ │ ├── settings-schema_FUTURE.json │ │ ├── spices-update-symbolic.svg │ │ ├── stylesheet.css │ │ ├── to-string.js │ │ └── utils.js │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── caracteres_speciaux.odt │ │ ├── constants.js │ │ ├── httpLib.js │ │ ├── icon.png │ │ ├── mainloopTools.js │ │ ├── notifications.js │ │ ├── settings-schema.json │ │ ├── spices-update-symbolic.svg │ │ ├── stylesheet.css │ │ ├── to-string.js │ │ └── utils.js │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cs │ │ ├── 3.8 │ │ │ ├── bin │ │ │ │ ├── SUSpices.py │ │ │ │ └── __init__.py │ │ │ ├── cinnamon-settings.py │ │ │ ├── cinnamon-settings.ui │ │ │ ├── config.py │ │ │ └── modules │ │ │ │ ├── cs_applets.py │ │ │ │ ├── cs_desklets.py │ │ │ │ ├── cs_extensions.py │ │ │ │ └── cs_themes.py │ │ ├── 4.0 │ │ │ ├── bin │ │ │ │ ├── SUSpices.py │ │ │ │ └── __init__.py │ │ │ ├── cinnamon-settings.py │ │ │ ├── cinnamon-settings.ui │ │ │ ├── config.py │ │ │ └── modules │ │ │ │ ├── cs_applets.py │ │ │ │ ├── cs_desklets.py │ │ │ │ ├── cs_extensions.py │ │ │ │ └── cs_themes.py │ │ ├── 4.2 │ │ │ ├── bin │ │ │ │ ├── SUExtensionCore.py │ │ │ │ ├── SUSpices.py │ │ │ │ └── __init__.py │ │ │ ├── cinnamon-settings.py │ │ │ ├── cinnamon-settings.ui │ │ │ ├── config.py │ │ │ └── modules │ │ │ │ ├── cs_applets.py │ │ │ │ ├── cs_desklets.py │ │ │ │ ├── cs_extensions.py │ │ │ │ └── cs_themes.py │ │ ├── 4.4 │ │ │ ├── bin │ │ │ │ ├── SUSpices.py │ │ │ │ └── __init__.py │ │ │ ├── cinnamon-settings.py │ │ │ ├── cinnamon-settings.ui │ │ │ ├── config.py │ │ │ ├── icons │ │ │ └── modules │ │ │ │ ├── cs_applets.py │ │ │ │ ├── cs_desklets.py │ │ │ │ ├── cs_extensions.py │ │ │ │ └── cs_themes.py │ │ ├── 4.6 │ │ │ ├── bin │ │ │ │ ├── SUSpices.py │ │ │ │ └── __init__.py │ │ │ ├── cinnamon-settings.py │ │ │ ├── cinnamon-settings.ui │ │ │ ├── config.py │ │ │ ├── icons │ │ │ └── modules │ │ │ │ ├── cs_applets.py │ │ │ │ ├── cs_desklets.py │ │ │ │ ├── cs_extensions.py │ │ │ │ └── cs_themes.py │ │ ├── 6.0_FUTURE │ │ │ ├── bin │ │ │ │ ├── SUSpices.py │ │ │ │ ├── SettingsWidgets.py │ │ │ │ ├── Spices.py │ │ │ │ ├── __init__.py │ │ │ │ ├── capi.py │ │ │ │ ├── config.py │ │ │ │ ├── proxygsettings.py │ │ │ │ └── util.py │ │ │ ├── cinnamon-settings.py │ │ │ ├── cinnamon-settings.ui │ │ │ ├── cinnamon-settings_OLD.py │ │ │ ├── config.py │ │ │ ├── config_SYSTEM.py │ │ │ ├── icons │ │ │ └── modules │ │ │ │ ├── cs_actions.py │ │ │ │ ├── cs_applets.py │ │ │ │ ├── cs_desklets.py │ │ │ │ ├── cs_extensions.py │ │ │ │ └── cs_themes.py │ │ └── latest │ │ ├── fonts │ │ └── Symbola │ │ │ └── README.txt │ │ ├── help │ │ ├── en │ │ │ ├── README.html │ │ │ └── README.md │ │ ├── fr │ │ │ ├── README.html │ │ │ └── README.md │ │ └── hr │ │ │ ├── README.html │ │ │ └── README.md │ │ ├── icon.png │ │ ├── icons │ │ ├── cs-actions.png │ │ ├── cs-actions.svg │ │ ├── cs-applets.png │ │ ├── cs-applets.svg │ │ ├── cs-desklets.png │ │ ├── cs-desklets.svg │ │ ├── cs-extensions.png │ │ ├── cs-extensions.svg │ │ ├── cs-themes.png │ │ ├── cs-themes.svg │ │ ├── spices-update-anim-symbolic.svg │ │ ├── spices-update-anim-test-symbolic (copie).svg │ │ ├── spices-update-anim-test-symbolic.svg │ │ ├── spices-update-symbolic.svg │ │ ├── su-actions-symbolic.svg │ │ ├── su-applets-symbolic.svg │ │ ├── su-desklets-symbolic.svg │ │ ├── su-extensions-symbolic.svg │ │ ├── su-forget-symbolic.svg │ │ ├── su-general-symbolic.svg │ │ ├── su-ignore.svg │ │ ├── su-themes-symbolic.svg │ │ └── su-update-available-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── SpicesUpdate@claudiux.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── is.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── scripts │ │ ├── cinnamon_settings.py │ │ ├── commands.txt │ │ ├── generate_mo.sh │ │ ├── install_symbola_on_Arch.sh │ │ ├── logger.py │ │ ├── move_themes.sh │ │ ├── open_download_tab.py │ │ ├── proxygsettings.py │ │ ├── spices-cache-updater.py │ │ ├── thumb-downloader.sh │ │ ├── thumbs-updater.py │ │ └── witness-debian.sh ├── info.json └── screenshot.png ├── ThemeRefresh@JosephM ├── files │ └── ThemeRefresh@JosephM │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ThemeRefresh@JosephM.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── VPN-Sentinel@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── VPN-Sentinel@claudiux │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── data │ │ ├── countries_and_their_code.csv │ │ ├── stylesheet.css.template │ │ ├── symbola_flag_codes (copie).csv │ │ └── symbola_flag_codes.csv │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── eye.svg │ │ ├── eye2.svg │ │ ├── flag-sentinel-symbolic.svg │ │ ├── icon_OLD.png │ │ ├── network-vpn-symbolic.svg │ │ ├── view-reveal-symbolic.svg │ │ ├── vpn-sentinel-symbolic.svg │ │ └── vpn-sentinel.png │ │ ├── lib │ │ ├── activityLogging.js │ │ ├── checkDependencies.js │ │ ├── constants.js │ │ ├── files.js │ │ ├── filesCsv.js │ │ ├── geoip2.js │ │ ├── ipgateway.js │ │ ├── mainloopTools.js │ │ ├── to-string.js │ │ └── util.js │ │ ├── metadata.json │ │ ├── po │ │ ├── VPN-Sentinel@claudiux.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ ├── scripts │ │ ├── FileInfo.js │ │ ├── apply-bypass-list.sh │ │ ├── generate_mo.sh │ │ ├── generate_pot.py │ │ ├── getTZ.sh │ │ ├── kill_all_pids_of.sh │ │ ├── nmcli-exit-codes.txt │ │ ├── reload_ext.sh │ │ ├── some_commands.txt │ │ ├── start_client.sh │ │ ├── stop_client.sh │ │ ├── vpn_iface_detect.sh │ │ ├── vpn_names.sh │ │ ├── vpn_status.sh │ │ ├── vpn_status_sentinel.sh │ │ └── watch-log2.sh │ │ ├── settings-schema.json │ │ ├── sounds │ │ ├── commands.txt │ │ ├── vpn-connection-short.oga │ │ ├── vpn-connection-short2.oga │ │ ├── vpn-connection.oga │ │ └── vpn-dropped.oga │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── anime-wallpaper@flyflyan ├── LICENSE ├── README.md ├── README.zh_CN.md ├── files │ └── anime-wallpaper@flyflyan │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── anime-wallpaper@flyflyan.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── any-alarm@sophie-la-li ├── README.md ├── files │ └── any-alarm@sophie-la-li │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── any-alarm@sophie-la-li.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── app-launcher@mchilli ├── README.md ├── files │ └── app-launcher@mchilli │ │ ├── applet.js │ │ ├── dialogs.py │ │ ├── icon.png │ │ ├── icons │ │ ├── cancel-symbolic.svg │ │ ├── delete-symbolic.svg │ │ └── edit-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── app-launcher@mchilli.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── ui │ │ ├── app.glade │ │ ├── confirm.glade │ │ ├── group.glade │ │ ├── import.glade │ │ ├── separator.glade │ │ ├── style.css │ │ └── widget.glade │ │ └── widgets.py ├── info.json └── screenshot.png ├── asl@santiago ├── README.md ├── files │ └── asl@santiago │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── asl@santiago.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── auto-dark-light@gihaume ├── CHANGELOG.md ├── README.md ├── files │ └── auto-dark-light@gihaume │ │ ├── 2.2 │ │ ├── applet.js │ │ └── icons │ │ │ └── on-error-symbolic.svg │ │ ├── 5.8 │ │ ├── applet.js │ │ ├── globals.d.ts │ │ ├── icons │ │ │ ├── auto-inverted-symbolic.svg │ │ │ ├── auto-symbolic.svg │ │ │ ├── dark-symbolic.svg │ │ │ ├── light-symbolic.svg │ │ │ └── on-error-symbolic.svg │ │ ├── jsconfig.json │ │ ├── lib │ │ │ ├── CLASSES HIERARCHY.drawio.svg │ │ │ ├── background_handler.js │ │ │ ├── color_scheme_change_listener.js │ │ │ ├── commands_launcher │ │ │ │ ├── README.md │ │ │ │ ├── commands_launcher.js │ │ │ │ └── launch_command.js │ │ │ ├── dbus.js │ │ │ ├── event_scheduler.js │ │ │ ├── sleep_wakeup_listener │ │ │ │ ├── screen_lock_checker.js │ │ │ │ └── sleep_wakeup_listener.js │ │ │ ├── themes_handler.js │ │ │ ├── time_change_listener │ │ │ │ ├── Makefile │ │ │ │ ├── main.cpp │ │ │ │ ├── time_change_listener.cpp │ │ │ │ ├── time_change_listener.hpp │ │ │ │ └── time_change_listener.js │ │ │ ├── time_of_day.js │ │ │ ├── timer_absolute.js │ │ │ ├── timezone_change_listener.js │ │ │ ├── timezones_coordinates │ │ │ │ ├── database.json │ │ │ │ ├── generate_database.ipynb │ │ │ │ └── timezone_coordinates_finder.js │ │ │ ├── translator.js │ │ │ └── twilights_calculator │ │ │ │ ├── suncalc.js │ │ │ │ └── twilights_calculator.js │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ └── po │ │ ├── auto-dark-light@gihaume.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── azan@fahri.nurul.id ├── LICENSE ├── README.md ├── THIRD_PARTY_COMPONENTS ├── files │ └── azan@fahri.nurul.id │ │ ├── HijriCalendarKuwaiti.js │ │ ├── PrayTimes.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── azan@fahri.nurul.id.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── backgroundroll@Sokawaii25 ├── README.md ├── files │ └── backgroundroll@Sokawaii25 │ │ ├── README.md │ │ ├── applet.js │ │ ├── background │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ └── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── backgroundroll@Sokawaii25.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── bash-sensors@pkkk ├── files │ └── bash-sensors@pkkk │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bash-sensors@pkkk.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi_FI.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── batterymonitor@pdcurtis ├── CHANGELOG.md ├── README.md ├── files │ └── batterymonitor@pdcurtis │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── batterymonitorwarning.oga │ │ ├── icons │ │ │ ├── classic │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-full.svg │ │ │ │ └── battery-low.png │ │ │ ├── yaru-dark │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-full.png │ │ │ │ └── battery-low.png │ │ │ └── yaru-light │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-full.png │ │ │ │ └── battery-low.png │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ └── suspendScript │ │ ├── 5.4 │ │ ├── applet.js │ │ ├── icons │ │ │ ├── classic │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-full.svg │ │ │ │ └── battery-low.png │ │ │ ├── yaru-dark │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-full.png │ │ │ │ └── battery-low.png │ │ │ └── yaru-light │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-full.png │ │ │ │ └── battery-low.png │ │ ├── settings-schema.json │ │ └── suspendScript.sh │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── batterymonitor@pdcurtis.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── batterypower@joka42 ├── .gitignore ├── LICENSE.md ├── files │ └── batterypower@joka42 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── batterypower@joka42.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── update_upower.py ├── info.json └── screenshot.png ├── better-backgrounds@simonmicro ├── AUTHORS ├── LICENSE.md ├── README.md ├── files │ └── better-backgrounds@simonmicro │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── applet.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── better-backgrounds@simonmicro.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── betterlock ├── files │ └── betterlock │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── caps-off-symbolic.svg │ │ ├── caps-on-symbolic.svg │ │ ├── num-off-symbolic.svg │ │ ├── num-on-symbolic.svg │ │ ├── scr-off-symbolic.svg │ │ └── scr-on-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── betterlock.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── bettersettings@bownz ├── files │ └── bettersettings@bownz │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bettersettings@bownz.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── xkill.py ├── info.json └── screenshot.png ├── bible@nodeengineer.com ├── README.md ├── files │ └── bible@nodeengineer.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── js │ │ └── QUtils.js │ │ ├── metadata.json │ │ └── po │ │ ├── bible@nodeengineer.com.pot │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── binaryclock@entelechy ├── files │ └── binaryclock@entelechy │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── calendar.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── binaryclock@entelechy.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── bing-wallpaper@starcross.dev ├── README.md ├── files │ └── bing-wallpaper@starcross.dev │ │ ├── LICENSE │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ └── bing-wallpaper-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── bing-wallpaper@starcross.dev.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── bluetooth-battery@zamszowy ├── LICENSE ├── README.md ├── files │ └── bluetooth-battery@zamszowy │ │ ├── applet.js │ │ ├── dev-info-window.js │ │ ├── icon.png │ │ ├── icons │ │ ├── battery-000-dark.svg │ │ ├── battery-000-light.svg │ │ ├── battery-000-symbolic.svg │ │ ├── battery-010-dark.svg │ │ ├── battery-010-light.svg │ │ ├── battery-010-symbolic.svg │ │ ├── battery-020-dark.svg │ │ ├── battery-020-light.svg │ │ ├── battery-020-symbolic.svg │ │ ├── battery-030-dark.svg │ │ ├── battery-030-light.svg │ │ ├── battery-030-symbolic.svg │ │ ├── battery-040-dark.svg │ │ ├── battery-040-light.svg │ │ ├── battery-040-symbolic.svg │ │ ├── battery-050-dark.svg │ │ ├── battery-050-light.svg │ │ ├── battery-050-symbolic.svg │ │ ├── battery-060-dark.svg │ │ ├── battery-060-light.svg │ │ ├── battery-060-symbolic.svg │ │ ├── battery-070-dark.svg │ │ ├── battery-070-light.svg │ │ ├── battery-070-symbolic.svg │ │ ├── battery-080-dark.svg │ │ ├── battery-080-light.svg │ │ ├── battery-080-symbolic.svg │ │ ├── battery-090-dark.svg │ │ ├── battery-090-light.svg │ │ ├── battery-090-symbolic.svg │ │ ├── battery-100-dark.svg │ │ ├── battery-100-light.svg │ │ ├── battery-100-symbolic.svg │ │ ├── headphones-000-dark.svg │ │ ├── headphones-000-light.svg │ │ ├── headphones-000-symbolic.svg │ │ ├── headphones-010-dark.svg │ │ ├── headphones-010-light.svg │ │ ├── headphones-010-symbolic.svg │ │ ├── headphones-020-dark.svg │ │ ├── headphones-020-light.svg │ │ ├── headphones-020-symbolic.svg │ │ ├── headphones-030-dark.svg │ │ ├── headphones-030-light.svg │ │ ├── headphones-030-symbolic.svg │ │ ├── headphones-040-dark.svg │ │ ├── headphones-040-light.svg │ │ ├── headphones-040-symbolic.svg │ │ ├── headphones-050-dark.svg │ │ ├── headphones-050-light.svg │ │ ├── headphones-050-symbolic.svg │ │ ├── headphones-060-dark.svg │ │ ├── headphones-060-light.svg │ │ ├── headphones-060-symbolic.svg │ │ ├── headphones-070-dark.svg │ │ ├── headphones-070-light.svg │ │ ├── headphones-070-symbolic.svg │ │ ├── headphones-080-dark.svg │ │ ├── headphones-080-light.svg │ │ ├── headphones-080-symbolic.svg │ │ ├── headphones-090-dark.svg │ │ ├── headphones-090-light.svg │ │ ├── headphones-090-symbolic.svg │ │ ├── headphones-100-dark.svg │ │ ├── headphones-100-light.svg │ │ ├── headphones-100-symbolic.svg │ │ ├── keyboard-000-dark.svg │ │ ├── keyboard-000-light.svg │ │ ├── keyboard-000-symbolic.svg │ │ ├── keyboard-010-dark.svg │ │ ├── keyboard-010-light.svg │ │ ├── keyboard-010-symbolic.svg │ │ ├── keyboard-020-dark.svg │ │ ├── keyboard-020-light.svg │ │ ├── keyboard-020-symbolic.svg │ │ ├── keyboard-030-dark.svg │ │ ├── keyboard-030-light.svg │ │ ├── keyboard-030-symbolic.svg │ │ ├── keyboard-040-dark.svg │ │ ├── keyboard-040-light.svg │ │ ├── keyboard-040-symbolic.svg │ │ ├── keyboard-050-dark.svg │ │ ├── keyboard-050-light.svg │ │ ├── keyboard-050-symbolic.svg │ │ ├── keyboard-060-dark.svg │ │ ├── keyboard-060-light.svg │ │ ├── keyboard-060-symbolic.svg │ │ ├── keyboard-070-dark.svg │ │ ├── keyboard-070-light.svg │ │ ├── keyboard-070-symbolic.svg │ │ ├── keyboard-080-dark.svg │ │ ├── keyboard-080-light.svg │ │ ├── keyboard-080-symbolic.svg │ │ ├── keyboard-090-dark.svg │ │ ├── keyboard-090-light.svg │ │ ├── keyboard-090-symbolic.svg │ │ ├── keyboard-100-dark.svg │ │ ├── keyboard-100-light.svg │ │ ├── keyboard-100-symbolic.svg │ │ ├── mouse-000-dark.svg │ │ ├── mouse-000-light.svg │ │ ├── mouse-000-symbolic.svg │ │ ├── mouse-010-dark.svg │ │ ├── mouse-010-light.svg │ │ ├── mouse-010-symbolic.svg │ │ ├── mouse-020-dark.svg │ │ ├── mouse-020-light.svg │ │ ├── mouse-020-symbolic.svg │ │ ├── mouse-030-dark.svg │ │ ├── mouse-030-light.svg │ │ ├── mouse-030-symbolic.svg │ │ ├── mouse-040-dark.svg │ │ ├── mouse-040-light.svg │ │ ├── mouse-040-symbolic.svg │ │ ├── mouse-050-dark.svg │ │ ├── mouse-050-light.svg │ │ ├── mouse-050-symbolic.svg │ │ ├── mouse-060-dark.svg │ │ ├── mouse-060-light.svg │ │ ├── mouse-060-symbolic.svg │ │ ├── mouse-070-dark.svg │ │ ├── mouse-070-light.svg │ │ ├── mouse-070-symbolic.svg │ │ ├── mouse-080-dark.svg │ │ ├── mouse-080-light.svg │ │ ├── mouse-080-symbolic.svg │ │ ├── mouse-090-dark.svg │ │ ├── mouse-090-light.svg │ │ ├── mouse-090-symbolic.svg │ │ ├── mouse-100-dark.svg │ │ ├── mouse-100-light.svg │ │ └── mouse-100-symbolic.svg │ │ ├── metadata.json │ │ ├── override-select.js │ │ ├── po │ │ ├── bluetooth-battery@zamszowy.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── bose@tuuxx ├── Readme.md ├── files │ └── bose@tuuxx │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── headphone-offline-symbolic.svg │ │ ├── headphone-symbolic.svg │ │ ├── headphone-warning-symbolic.svg │ │ ├── headphone_missing.svg │ │ ├── headphone_offline.svg │ │ ├── headphone_warning.svg │ │ ├── headset.png │ │ └── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── bose@tuuxx.pot │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── brightness-and-gamma-applet@cardsurf ├── CHANGELOG.md ├── README.md ├── files │ └── brightness-and-gamma-applet@cardsurf │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── icons │ │ │ ├── baga-full.svg │ │ │ ├── baga-off.svg │ │ │ ├── baga-on.svg │ │ │ ├── baga.svg │ │ │ ├── sun-full-symbolic.svg │ │ │ ├── sun-full.svg │ │ │ ├── sun-off-symbolic.svg │ │ │ ├── sun-off.svg │ │ │ ├── sun-on-symbolic.svg │ │ │ ├── sun-on.svg │ │ │ ├── sun-symbolic.svg │ │ │ ├── sun.svg │ │ │ ├── yaru-full-symbolic.svg │ │ │ ├── yaru-off-symbolic.svg │ │ │ └── yaru-on-symbolic.svg │ │ ├── lib │ │ │ ├── appletConstants.js │ │ │ ├── appletGui.js │ │ │ ├── compatibility.js │ │ │ ├── mainloopTools.js │ │ │ ├── shellUtils.js │ │ │ ├── suncalc.js │ │ │ └── values.js │ │ ├── scripts │ │ │ └── number-of-monitors.sh │ │ ├── settings-schema (copie).json │ │ └── settings-schema.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── appletConstants.js │ │ ├── appletGui.js │ │ ├── compatibility.js │ │ ├── icon.png │ │ ├── icons │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── brightness-and-gamma-applet@cardsurf.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── shellUtils.js │ │ └── values.js ├── info.json └── screenshot.png ├── bumblebee@pdcurtis ├── CHANGELOG.md ├── README.md ├── files │ └── bumblebee@pdcurtis │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── gputempscript.sh │ │ ├── icon.png │ │ ├── icons │ │ ├── intel.svg │ │ ├── nvidia.png │ │ ├── nvidia.svg │ │ ├── prime-tray-intel.png │ │ └── prime-tray-nvidia.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bumblebee@pdcurtis.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── c-eyes@anaximeno ├── .gitignore ├── LICENSE ├── README.md ├── files │ └── c-eyes@anaximeno │ │ ├── 4.2 │ │ ├── applet.js │ │ ├── clickAnimationModes.js │ │ ├── eyeModes.js │ │ ├── helper.js │ │ └── settings-schema.json │ │ ├── 5.4 │ │ ├── applet.js │ │ ├── clickAnimationModes.js │ │ ├── eyeModes.js │ │ ├── helper.js │ │ └── settings-schema.json │ │ ├── 6.2 │ │ ├── applet.js │ │ ├── constants.js │ │ ├── eyeModes.js │ │ ├── helpers.js │ │ ├── pointerWatcher.js │ │ └── settings-schema.json │ │ ├── circle │ │ ├── 1.svg │ │ ├── 10.svg │ │ ├── 11.svg │ │ ├── 12.svg │ │ ├── 13.svg │ │ ├── 14.svg │ │ ├── 15.svg │ │ ├── 16.svg │ │ ├── 17.svg │ │ ├── 18.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── 4.svg │ │ ├── 5.svg │ │ ├── 6.svg │ │ ├── 7.svg │ │ ├── 8.svg │ │ └── 9.svg │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── c-eyes@anaximeno.pot │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── calc-js@ptandler ├── README.md ├── copy-changed-files.sh ├── files │ └── calc-js@ptandler │ │ ├── applet.js │ │ ├── helpText.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── calc-js@ptandler.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json ├── reload-applet.gjs ├── screenshot.png └── watch-for-changed-files.sh ├── calendar@ccprog ├── CHANGELOG.md ├── README.md ├── calendar.png ├── files │ └── calendar@ccprog │ │ ├── 3.8 │ │ ├── applet.js │ │ ├── calendar.js │ │ ├── holidays.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ ├── settings_widgets.py │ │ ├── stylesheet.css │ │ ├── utils.js │ │ └── worldclocks.js │ │ ├── 5.2 │ │ ├── applet.js │ │ ├── calendar.js │ │ ├── eventView.js │ │ ├── holidays.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ ├── settings_widgets.py │ │ ├── stylesheet.css │ │ ├── utils.js │ │ └── worldclocks.js │ │ ├── eventView.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── calendar@ccprog.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── calendar@simonwiles.net ├── files │ └── calendar@simonwiles.net │ │ ├── applet.js │ │ ├── calendar.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── calendar@simonwiles.net.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ └── world_clock_calendar_settings.py ├── info.json └── screenshot.png ├── cheaty@centurix ├── README.md ├── files │ └── cheaty@centurix │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cheaty@centurix.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── refdocs │ │ ├── Bootstrap │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── Docker │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── Git │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── HTTP Status Codes │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── Markdown │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── Regex │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── SQL │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── Shell │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── Tmux │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ └── Vim │ │ │ ├── icon.svg │ │ │ └── sheet.json │ │ ├── reload.sh │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ └── template.json ├── info.json └── screenshot.png ├── cinnamon-multi-line-taskbar-applet ├── COPYING ├── README.md ├── files │ └── cinnamon-multi-line-taskbar-applet │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── cinnamon-multi-line-taskbar-applet.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── cinnamon-spices-makepot ├── cinnamon-timer@jake1164 ├── README.md ├── files │ └── cinnamon-timer@jake1164 │ │ ├── 2.6 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 3.4 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── cinnamon-timer@jake1164.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── cinnamonvantage@garlayntoji ├── COPYING ├── README.md ├── files │ └── cinnamonvantage@garlayntoji │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── legion-white.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cinnamonvantage@garlayntoji.pot │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── clean-show-desktop@filipetorresbr ├── files │ └── clean-show-desktop@filipetorresbr │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── clean-show-desktop@filipetorresbr.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── tr.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── themecolor.sh ├── info.json └── screenshot.png ├── click-clock@wernerstucky ├── files │ └── click-clock@wernerstucky │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── click-clock@wernerstucky.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── clipboard-eraser@Techcrafter ├── LICENSE ├── README.md ├── files │ └── clipboard-eraser@Techcrafter │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── clipboard-eraser@Techcrafter.pot │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── clipboard-qr@wrouesnel ├── README.md ├── files │ └── clipboard-qr@wrouesnel │ │ ├── QR.js │ │ ├── QRLib.js │ │ ├── applet.js │ │ ├── clipboard-qr.py │ │ ├── icon.png │ │ ├── icons │ │ ├── qrcode-scan-symbolic.svg │ │ └── qrcode-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── clipboard-qr@wrouesnel.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── collapsible-systray@feuerfuchs.eu ├── README.md ├── files │ └── collapsible-systray@feuerfuchs.eu │ │ ├── 3.2 │ │ ├── CSCollapseBtn.js │ │ ├── CSRemovableSwitchMenuItem.js │ │ ├── CinnamonSystray.js │ │ ├── Util.js │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 4.0 │ │ ├── CSCollapseBtn.js │ │ ├── CSRemovableSwitchMenuItem.js │ │ ├── CinnamonSystray.js │ │ ├── Util.js │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── collapsible-systray@feuerfuchs.eu.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ro.po │ │ ├── sv.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── color-blind-filters@rcalixte ├── CHANGELOG.md ├── README.md ├── files │ └── color-blind-filters@rcalixte │ │ ├── 5.4 │ │ ├── Shaders.js │ │ ├── applet.js │ │ ├── icons │ │ │ ├── eye-disabled-symbolic.svg │ │ │ └── eye-symbolic.svg │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── color-blind-filters@rcalixte.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── color-picker@fmete ├── README.md ├── files │ └── color-picker@fmete │ │ ├── applet.js │ │ ├── cp.py │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── color-picker@fmete.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── is.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── commandLauncher@scollins ├── README.md ├── files │ └── commandLauncher@scollins │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── commandLauncher@scollins.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── computer@brownsr ├── README.md ├── files │ └── computer@brownsr │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── computer@brownsr.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── cpu-monitor-text@gnemonix ├── files │ └── cpu-monitor-text@gnemonix │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cpu-monitor-text@gnemonix.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── cpufreq@mtwebster ├── files │ └── cpufreq@mtwebster │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── panelMenu.js │ │ ├── po │ │ ├── ca.po │ │ ├── cpufreq@mtwebster.pot │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── cryptocoin@guantanamoe ├── CHANGELOG ├── LICENSE.md ├── README.md ├── files │ └── cryptocoin@guantanamoe │ │ ├── accounting.js │ │ ├── applet.js │ │ ├── currencies.json │ │ ├── icon.png │ │ ├── json_parse.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cryptocoin@guantanamoe.pot │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── ctrl4docker@hoffis-eck.de ├── README.md ├── files │ └── ctrl4docker@hoffis-eck.de │ │ ├── DockerApi.js │ │ ├── HttpSocket.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── 128 │ │ │ ├── Error.png │ │ │ ├── NameInUse.png │ │ │ ├── NotExistent.png │ │ │ ├── Paused.png │ │ │ ├── Running.png │ │ │ ├── Stopped.png │ │ │ └── Unknown.png │ │ └── icons.xcf │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── ctrl4docker@hoffis-eck.de.pot │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── screenshot.png └── screenshot.xcf ├── darkMode@linuxedo.com ├── README.md ├── files │ └── darkMode@linuxedo.com │ │ ├── 3.0 │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── 5.8 │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── icons │ │ ├── moon-symbolic.svg │ │ └── sun-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── darkMode@linuxedo.com.pot │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl_PL.po │ │ ├── pt_BR.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── ddcci-monitor-control@andr35 ├── LICENSE ├── README.md ├── files │ └── ddcci-monitor-control@andr35 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── ddcci-monitor-control@andr35.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── ddcci-multi-monitor@tim-we ├── CHANGELOG.md ├── README.md ├── files │ └── ddcci-multi-monitor@tim-we │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── ddcci-multi-monitor@tim-we.pot │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── desaturate-all@hkoosha ├── CHANGELOG.md ├── README.md ├── files │ └── desaturate-all@hkoosha │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── desaturate-all@hkoosha.pot │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── devbar@ludvigbostrom ├── README.md ├── files │ └── devbar@ludvigbostrom │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── devbar@ludvigbostrom.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── devutils@fogl ├── LICENSE ├── files │ └── devutils@fogl │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── devutils@fogl.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── dgs-bpivaty@gmail.com ├── README.md ├── files │ └── dgs-bpivaty@gmail.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── dgs-applet.png │ │ └── dgs.png │ │ ├── metadata.json │ │ ├── notifier.js │ │ ├── po │ │ ├── ca.po │ │ ├── dgs-bpivaty@gmail.com.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── sounds │ │ └── Blip.wav │ │ ├── stylesheet.css │ │ └── user.js ├── info.json └── screenshot.png ├── diaspora-notif@douze12 ├── files │ └── diaspora-notif@douze12 │ │ ├── applet.js │ │ ├── diaspora_asterisk_32.png │ │ ├── diaspora_asterisk_32_error.png │ │ ├── diaspora_asterisk_32_notif.png │ │ ├── diaspora_get_notifs.py │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── notifs.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── diaspora-notif@douze12.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── directory-menu@torchipeppo ├── LICENSE ├── README.md ├── files │ └── directory-menu@torchipeppo │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── directory-menu@torchipeppo.pot │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── popup_menu.py │ │ └── settings-schema.json ├── info.json ├── screenshot.png └── test_popup_menu.py ├── disk-read-and-write-speed@cardsurf ├── README.md ├── files │ └── disk-read-and-write-speed@cardsurf │ │ ├── applet.js │ │ ├── appletConstants.js │ │ ├── appletGui.js │ │ ├── compatibility.js │ │ ├── cssStylization.js │ │ ├── files.js │ │ ├── icon.png │ │ ├── icons │ │ ├── icon.svg │ │ ├── read.svg │ │ └── write.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── disk-read-and-write-speed@cardsurf.pot │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── shellUtils.js ├── info.json └── screenshot.png ├── download-and-upload-speed@cardsurf ├── README.md ├── files │ └── download-and-upload-speed@cardsurf │ │ ├── applet.js │ │ ├── appletConstants.js │ │ ├── appletGui.js │ │ ├── compatibility.js │ │ ├── cssStylization.js │ │ ├── dates.js │ │ ├── files.js │ │ ├── filesCsv.js │ │ ├── icon.png │ │ ├── icons │ │ ├── arrow-pointing-down-symbolic.svg │ │ ├── arrow-up-symbolic.svg │ │ ├── arrow_down_blue.svg │ │ ├── arrow_down_green.svg │ │ ├── arrow_down_red.svg │ │ ├── arrow_up_blue.svg │ │ ├── arrow_up_green.svg │ │ ├── arrow_up_red.svg │ │ └── credits.txt │ │ ├── infos.js │ │ ├── mainloopTools.js │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── download-and-upload-speed@cardsurf.pot │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── scripts │ │ ├── run_lsof.sh │ │ └── run_nethogs.sh │ │ ├── settings-schema.json │ │ ├── shellUtils.js │ │ ├── translation.js │ │ └── translation.sh ├── info.json └── screenshot.png ├── duolingo-helper@nodeengineer.com ├── README.md ├── files │ └── duolingo-helper@nodeengineer.com │ │ ├── applet.js │ │ ├── crown.png │ │ ├── diamond.png │ │ ├── flame.png │ │ ├── icon.png │ │ ├── icon_red.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── duolingo-helper@nodeengineer.com.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── envycontrol@zamszowy ├── LICENSE ├── README.md ├── files │ └── envycontrol@zamszowy │ │ ├── applet.js │ │ ├── control.sh │ │ ├── dialog-window.js │ │ ├── icon.png │ │ ├── icons │ │ ├── envy-amd-dark.svg │ │ ├── envy-amd-light-symbolic.svg │ │ ├── envy-amd-light.svg │ │ ├── envy-configure-dark.svg │ │ ├── envy-configure-light.svg │ │ ├── envy-configure-symbolic.svg │ │ ├── envy-hybrid-dark.svg │ │ ├── envy-hybrid-light.svg │ │ ├── envy-hybrid-symbolic.svg │ │ ├── envy-intel-dark.svg │ │ ├── envy-intel-light.svg │ │ ├── envy-intel-symbolic.svg │ │ ├── envy-nvidia-dark.svg │ │ ├── envy-nvidia-light.svg │ │ └── envy-nvidia-light.svgenvy-nvidia-symbolic.svg │ │ ├── info-window.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── envycontrol@zamszowy.pot │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── right-click.png ├── screenshot.png ├── settings.png └── switched.png ├── expressvpn@Hukuta ├── README.md ├── files │ └── expressvpn@Hukuta │ │ ├── applet.js │ │ ├── icon-grey.png │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── expressvpn@Hukuta.pot │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── feeds@jonbrettdev.wordpress.com ├── .gitignore ├── CHANGELOG ├── README.md ├── TODO ├── files │ └── feeds@jonbrettdev.wordpress.com │ │ ├── ConfigFileManager.py │ │ ├── applet.js │ │ ├── check_feedparser.py │ │ ├── feedreader.js │ │ ├── getFeed.py │ │ ├── icon.png │ │ ├── icons │ │ ├── feed-new-symbolic.svg │ │ └── feed-symbolic.svg │ │ ├── loadItems.py │ │ ├── log_util.js │ │ ├── manage_feeds.py │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── feeds@jonbrettdev.wordpress.com.pot │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── fish@kriegcc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── COPYING ├── README.md ├── docs │ ├── CONTRIBUTING.md │ ├── DEVELOPMENT.md │ ├── TODO.md │ ├── TRANSLATION.md │ └── images │ │ └── applet │ │ ├── advanced-settings-developer-options.png │ │ ├── applet.gif │ │ ├── applet.png │ │ ├── context-menu.png │ │ └── settings-window.png ├── eslint.config.mjs ├── files │ └── fish@kriegcc │ │ ├── ImageChooser.py │ │ ├── animations │ │ ├── fishanim.png │ │ ├── footguy.png │ │ ├── monkey.png │ │ ├── oldwanda.png │ │ ├── wanda.png │ │ └── wanda.svg │ │ ├── applet.js │ │ ├── fish-applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fish@kriegcc.pot │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json ├── package.json ├── screenshot.png ├── scripts │ └── set-version.cjs ├── src │ ├── AnimatedFish │ │ ├── AnimatedFish.ts │ │ ├── Animation │ │ │ ├── cairo-surface │ │ │ │ └── Animation.ts │ │ │ └── texture-cache-sliced-image │ │ │ │ └── Animation.ts │ │ └── index.ts │ ├── FishApplet │ │ ├── ErrorManager │ │ │ ├── FishAppletErrorManager.ts │ │ │ └── index.ts │ │ ├── FishApplet.ts │ │ └── index.ts │ ├── PopupMenu │ │ ├── BasePopupMenu.ts │ │ ├── ErrorPopupMenu.ts │ │ ├── FishMessagePopupMenu.ts │ │ ├── FoolsDayPopupMenu.ts │ │ ├── PopupMenuFactory.ts │ │ └── index.ts │ ├── applet.ts │ ├── consts │ │ ├── common.ts │ │ ├── index.ts │ │ └── version.ts │ ├── types │ │ ├── ci-types-additions │ │ │ ├── Cairo.d.ts │ │ │ ├── Clutter.d.ts │ │ │ ├── GObject.d.ts │ │ │ └── St.d.ts │ │ ├── index.ts │ │ └── types.ts │ └── utils │ │ ├── common │ │ ├── command.ts │ │ ├── common.ts │ │ ├── foolsDay.ts │ │ ├── index.ts │ │ ├── renderOptions.ts │ │ └── theme.ts │ │ ├── icons │ │ ├── icons.ts │ │ └── index.ts │ │ ├── logging │ │ ├── Logger.ts │ │ └── index.ts │ │ ├── notification │ │ ├── index.ts │ │ └── notification.ts │ │ ├── pixbuf │ │ ├── image.ts │ │ └── index.ts │ │ └── translation │ │ ├── index.ts │ │ └── translation.ts ├── test.sh ├── tsconfig.json └── webpack.config.ts ├── force-quit@cinnamon.org ├── README.md ├── files │ └── force-quit@cinnamon.org │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── force-quit@cinnamon.org.pot │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── fw_fanctrl@juleskreuer.eu ├── LICENSE ├── README.md ├── files │ └── fw_fanctrl@juleskreuer.eu │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon_light.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── fw_fanctrl@juleskreuer.eu.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── screenshot.png └── settings.png ├── gamemode@axel358 ├── README.md ├── files │ └── gamemode@axel358 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── gamemode@axel358.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── github-projects@morgan-design.com ├── TODO.md ├── files │ └── github-projects@morgan-design.com │ │ ├── applet.js │ │ ├── github-token.js │ │ ├── github.js │ │ ├── icon.png │ │ ├── logger.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── github-projects@morgan-design.com.pot │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── gmail@lauritsriple ├── README.md ├── files │ └── gmail@lauritsriple │ │ ├── applet.js │ │ ├── getGmailFeedJson.py │ │ ├── icon.png │ │ ├── log_util.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gmail@lauritsriple.pot │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── removeCredentials.py │ │ ├── settings-schema.json │ │ └── storeCredentials.py ├── info.json └── screenshot.png ├── gnote@brett-smith ├── README.md ├── files │ └── gnote@brett-smith │ │ ├── LICENSE │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── add-note-symbolic.svg │ │ └── gnote-panel-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gnote@brett-smith.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── googledrive@pbojan ├── CHANGELOG.md ├── README.md ├── files │ └── googledrive@pbojan │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── googledrive@pbojan.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── gpaste-reloaded@feuerfuchs.eu ├── README.md ├── files │ └── gpaste-reloaded@feuerfuchs.eu │ │ ├── 6.4 │ │ ├── GPasteHistoryItem.js │ │ ├── GPasteHistoryListItem.js │ │ ├── GPasteNewItemDialog.js │ │ ├── GPasteNotInstalledDialog.js │ │ ├── GPasteSearchItem.js │ │ ├── __init__.js │ │ ├── applet.js │ │ ├── metadata.json │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── GPasteHistoryItem.js │ │ ├── GPasteHistoryListItem.js │ │ ├── GPasteNewItemDialog.js │ │ ├── GPasteNotInstalledDialog.js │ │ ├── GPasteSearchItem.js │ │ ├── README.md │ │ ├── __init__.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── install.sh │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gpaste-reloaded@feuerfuchs.eu.pot │ │ ├── hr.po │ │ ├── hu.po │ │ ├── is.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── gpumonitor@axel358 ├── README.md ├── files │ └── gpumonitor@axel358 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── gpumonitor@axel358.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── gputemperature@silentage.com ├── README.md ├── files │ └── gputemperature@silentage.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── gputemperature@silentage.com.pot │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── graphicsCenter@scollins ├── README.md ├── files │ └── graphicsCenter@scollins │ │ ├── applet.js │ │ ├── icon.png │ │ ├── link-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── graphicsCenter@scollins.pot │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── hamster@projecthamster.wordpress.com ├── CHANGES ├── README.md ├── files │ └── hamster@projecthamster.wordpress.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── images │ │ ├── hamster-idle-symbolic.svg │ │ └── hamster-tracking-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hamster@projecthamster.wordpress.com.pot │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stuff.js ├── info.json └── screenshot.png ├── healthyeyes@ipolozov ├── README.md ├── files │ └── healthyeyes@ipolozov │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── green.png │ │ └── red.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── healthyeyes@ipolozov.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── hideable-applets@cardsurf ├── README.md ├── files │ └── hideable-applets@cardsurf │ │ ├── applet.js │ │ ├── appletConstants.js │ │ ├── appletGui.js │ │ ├── compatibility.js │ │ ├── files.js │ │ ├── filesCsv.js │ │ ├── icon.png │ │ ├── icons │ │ ├── arrow-down-slim.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-slim.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-slim.svg │ │ ├── arrow-right.svg │ │ ├── arrow-up-slim.svg │ │ ├── arrow-up.svg │ │ └── question-mark.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hideable-applets@cardsurf.pot │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── hwmonitor@sylfurd ├── README.md ├── files │ └── hwmonitor@sylfurd │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── graph.js │ │ ├── icon.png │ │ ├── providers.js │ │ ├── settings-schema.json │ │ └── support.js │ │ ├── 3.8 │ │ ├── applet.js │ │ ├── graph.js │ │ ├── icon.png │ │ ├── providers.js │ │ ├── settings-schema.json │ │ └── support.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── hwmonitor@sylfurd.pot │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── horizontal.png ├── horizontal2.png ├── horizontal3.png ├── info.json ├── screenshot.png ├── vertical.png ├── vertical2.png └── vertical3.png ├── ifstat@tagadan ├── README.md ├── files │ └── ifstat@tagadan │ │ ├── applet.js │ │ ├── asd.sh │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── ifstat@tagadan.pot │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── readdata.sh ├── info.json └── screenshot.png ├── internet-indicator@sangorys ├── README.md ├── files │ └── internet-indicator@sangorys │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── internet.png │ │ ├── no-internet.png │ │ └── test-internet.png │ │ ├── js │ │ ├── QUtils.js │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── internet-indicator@sangorys.pot │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── ioDisk@ctrlesc ├── files │ └── ioDisk@ctrlesc │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── ioDisk@ctrlesc.pot │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── ipindicator@matus.benko@gmail.com ├── README.md ├── extent-flag-size.sh ├── files │ └── ipindicator@matus.benko@gmail.com │ │ ├── applet.js │ │ ├── flags │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── ao.png │ │ ├── aq.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bl.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── bq.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cw.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gg.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── im.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── je.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mf.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── ss.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sx.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ │ ├── getNetworkInterfaces.sh │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cn.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── ipindicator@matus.benko@gmail.com.pot │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── screenshot-icon.png ├── screenshot-ip.png ├── screenshot-isp.png ├── screenshot-settings.png ├── screenshot-tooltip.png └── screenshot.png ├── jalalicalendar@mohammad-sn ├── README.md ├── files │ └── jalalicalendar@mohammad-sn │ │ ├── applet.js │ │ ├── icon.png │ │ ├── jalalicalendar.js │ │ ├── metadata.json │ │ ├── mevents.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── jalalicalendar@mohammad-sn.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── sevents.json ├── info.json └── screenshot.png ├── jenkins@backuity.org ├── files │ └── jenkins@backuity.org │ │ ├── applet.js │ │ ├── icon.png │ │ ├── jenkins-abort.png │ │ ├── jenkins-green.png │ │ ├── jenkins-grey.png │ │ ├── jenkins-red.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── jenkins@backuity.org.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── kdecapplet@joejoetv ├── README.md ├── files │ └── kdecapplet@joejoetv │ │ ├── applet.js │ │ ├── icon.png │ │ ├── js │ │ ├── commonUtils.js │ │ ├── dialogs.js │ │ └── modules.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── kdecapplet@joejoetv.pot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pot-additions.txt │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── py │ │ └── dialogs.py │ │ ├── requirements.txt │ │ ├── settings-schema.json │ │ ├── settingsWidgets.py │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── kdeccc@Severga ├── README.md ├── files │ └── kdeccc@Severga │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── kdeccc@Severga.pot │ │ ├── makepot │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── localip@mrieracrespi ├── files │ └── localip@mrieracrespi │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── localip@mrieracrespi.pot │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── localipswithsettings@edaubert ├── README.md ├── files │ └── localipswithsettings@edaubert │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── localipswithsettings@edaubert.pot │ │ ├── nl.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── location-detection@heimdall ├── README.md ├── files │ └── location-detection@heimdall │ │ ├── applet.js │ │ ├── flags │ │ ├── aa.png │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── aq.png │ │ ├── ar.png │ │ ├── ara.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bl.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── bq.png │ │ ├── br.png │ │ ├── brai.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cs.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cw.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── epo.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gg.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── im.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── je.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mf.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── ss.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sx.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── uk.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── location-detection@heimdall.pot │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── lorem@vxstorm ├── files │ └── lorem@vxstorm │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── lorem@vxstorm.pot │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── mailnagapplet@ozderya.net ├── files │ └── mailnagapplet@ozderya.net │ │ ├── COPYING │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── mailnagapplet@ozderya.net.pot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── maximus-buttons@hanspr ├── README.md ├── files │ └── maximus-buttons@hanspr │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── settings-schema.json │ │ └── themes │ │ ├── Mac-OS-X │ │ ├── ABOUT │ │ ├── close.png │ │ ├── close_focused.png │ │ ├── maximize.png │ │ ├── maximize_focused.png │ │ ├── minimize.png │ │ ├── minimize_focused.png │ │ └── style.css │ │ ├── Mint-X │ │ ├── ABOUT │ │ ├── close.svg │ │ ├── close_hover.svg │ │ ├── max.svg │ │ ├── max_hover.svg │ │ ├── min.svg │ │ ├── min_hover.svg │ │ ├── screenshot.png │ │ └── style.css │ │ ├── Radiance │ │ ├── ABOUT │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ ├── screenshot.png │ │ └── style.css │ │ ├── UniMetro-Black │ │ ├── ABOUT │ │ ├── Screenshot.png │ │ ├── close.png │ │ ├── closeactive.png │ │ ├── closehover.png │ │ ├── max.png │ │ ├── maxactive.png │ │ ├── maxhover.png │ │ ├── min.png │ │ ├── minactive.png │ │ ├── minhover.png │ │ └── style.css │ │ ├── UniMetro │ │ ├── ABOUT │ │ ├── Screenshot.png │ │ ├── close.png │ │ ├── closeactive.png │ │ ├── closehover.png │ │ ├── max.png │ │ ├── maxactive.png │ │ ├── maxhover.png │ │ ├── min.png │ │ ├── minactive.png │ │ ├── minhover.png │ │ └── style.css │ │ ├── Vimix │ │ ├── close.png │ │ ├── close_focused_normal.png │ │ ├── close_focused_prelight.png │ │ ├── close_focused_pressed.png │ │ ├── maximize.png │ │ ├── maximize_focused_normal.png │ │ ├── maximize_focused_prelight.png │ │ ├── maximize_focused_pressed.png │ │ ├── minimize.png │ │ ├── minimize_focused_normal.png │ │ ├── minimize_focused_prelight.png │ │ ├── minimize_focused_pressed.png │ │ └── style.css │ │ └── default │ │ ├── ABOUT │ │ ├── close.svg │ │ ├── close_focused.svg │ │ ├── maximize.svg │ │ ├── maximize_focused.svg │ │ ├── minimize.svg │ │ ├── minimize_focused.svg │ │ └── style.css ├── info.json └── screenshot.png ├── maximus-title@hanspr ├── README.md ├── files │ └── maximus-title@hanspr │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── mediacontrols@rbfraphael ├── CHANGELOG.md ├── README.md ├── files │ └── mediacontrols@rbfraphael │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── mediacontrols@rbfraphael.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── mem-monitor-text@datanom.net ├── files │ └── mem-monitor-text@datanom.net │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── mem-monitor-text@datanom.net.pot │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── menu@csknet.org ├── files │ └── menu@csknet.org │ │ ├── applet.cfg │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── menu@csknet.org.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── mic-level@zamszowy ├── LICENSE ├── README.md ├── files │ └── mic-level@zamszowy │ │ ├── applet.js │ │ ├── hfp.sh │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── mic-level@zamszowy.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── profile.sh │ │ ├── rec.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── moonphase@techi-freki ├── CHANGELOG.md ├── LICENSE ├── README.md ├── files │ └── moonphase@techi-freki │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── LICENSE │ │ ├── direction-down-left-symbolic.svg │ │ ├── direction-down-right-symbolic.svg │ │ ├── direction-down-symbolic.svg │ │ ├── direction-left-symbolic.svg │ │ ├── direction-right-symbolic.svg │ │ ├── direction-up-left-symbolic.svg │ │ ├── direction-up-right-symbolic.svg │ │ ├── direction-up-symbolic.svg │ │ ├── lunar-eclipse-symbolic.svg │ │ ├── moon-alt-first-quarter-symbolic.svg │ │ ├── moon-alt-full-symbolic.svg │ │ ├── moon-alt-new-symbolic.svg │ │ ├── moon-alt-third-quarter-symbolic.svg │ │ ├── moon-alt-waning-crescent-1-symbolic.svg │ │ ├── moon-alt-waning-crescent-2-symbolic.svg │ │ ├── moon-alt-waning-crescent-3-symbolic.svg │ │ ├── moon-alt-waning-crescent-4-symbolic.svg │ │ ├── moon-alt-waning-crescent-5-symbolic.svg │ │ ├── moon-alt-waning-crescent-6-symbolic.svg │ │ ├── moon-alt-waning-gibbous-1-symbolic.svg │ │ ├── moon-alt-waning-gibbous-2-symbolic.svg │ │ ├── moon-alt-waning-gibbous-3-symbolic.svg │ │ ├── moon-alt-waning-gibbous-4-symbolic.svg │ │ ├── moon-alt-waning-gibbous-5-symbolic.svg │ │ ├── moon-alt-waning-gibbous-6-symbolic.svg │ │ ├── moon-alt-waxing-crescent-1-symbolic.svg │ │ ├── moon-alt-waxing-crescent-2-symbolic.svg │ │ ├── moon-alt-waxing-crescent-3-symbolic.svg │ │ ├── moon-alt-waxing-crescent-4-symbolic.svg │ │ ├── moon-alt-waxing-crescent-5-symbolic.svg │ │ ├── moon-alt-waxing-crescent-6-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-1-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-2-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-3-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-4-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-5-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-6-symbolic.svg │ │ ├── moon-first-quarter-symbolic.svg │ │ ├── moon-full-symbolic.svg │ │ ├── moon-new-symbolic.svg │ │ ├── moon-third-quarter-symbolic.svg │ │ ├── moon-waning-crescent-1-symbolic.svg │ │ ├── moon-waning-crescent-2-symbolic.svg │ │ ├── moon-waning-crescent-3-symbolic.svg │ │ ├── moon-waning-crescent-4-symbolic.svg │ │ ├── moon-waning-crescent-5-symbolic.svg │ │ ├── moon-waning-crescent-6-symbolic.svg │ │ ├── moon-waning-gibbous-1-symbolic.svg │ │ ├── moon-waning-gibbous-2-symbolic.svg │ │ ├── moon-waning-gibbous-3-symbolic.svg │ │ ├── moon-waning-gibbous-4-symbolic.svg │ │ ├── moon-waning-gibbous-5-symbolic.svg │ │ ├── moon-waning-gibbous-6-symbolic.svg │ │ ├── moon-waxing-crescent-1-symbolic.svg │ │ ├── moon-waxing-crescent-2-symbolic.svg │ │ ├── moon-waxing-crescent-3-symbolic.svg │ │ ├── moon-waxing-crescent-4-symbolic.svg │ │ ├── moon-waxing-crescent-5-symbolic.svg │ │ ├── moon-waxing-crescent-6-symbolic.svg │ │ ├── moon-waxing-gibbous-1-symbolic.svg │ │ ├── moon-waxing-gibbous-2-symbolic.svg │ │ ├── moon-waxing-gibbous-3-symbolic.svg │ │ ├── moon-waxing-gibbous-4-symbolic.svg │ │ ├── moon-waxing-gibbous-5-symbolic.svg │ │ ├── moon-waxing-gibbous-6-symbolic.svg │ │ ├── moonrise-symbolic.svg │ │ ├── moonset-symbolic.svg │ │ ├── night-clear-symbolic.svg │ │ ├── no-moonrise-symbolic.svg │ │ ├── no-moonset-symbolic.svg │ │ └── warning-outline-svgrepo-com.svg │ │ ├── js │ │ ├── calc.js │ │ ├── compass.js │ │ ├── config.js │ │ ├── direction.js │ │ ├── iconSet.js │ │ ├── menu.js │ │ ├── moon.js │ │ ├── moonPhase.js │ │ ├── translator.js │ │ └── ui │ │ │ ├── currentPhaseUi.js │ │ │ ├── elements │ │ │ ├── iconTextElementGenerator.js │ │ │ ├── noRiseSetElement.js │ │ │ ├── riseSetElement.js │ │ │ └── uiElement.js │ │ │ ├── headerUi.js │ │ │ ├── riseSetUi.js │ │ │ └── styles.js │ │ ├── lib │ │ └── suncalc3.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── moonphase@techi-freki.pot │ │ ├── nl.po │ │ ├── pt.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── mouse-keys-shortcut@GabrielCamara3526 ├── README.md ├── files │ └── mouse-keys-shortcut@GabrielCamara3526 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── dark-icon.svg │ │ └── light-icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── mouse-keys-shortcut@GabrielCamara3526.pot │ │ ├── pt_BR.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── multicore-sys-monitor@ccadeptic23 ├── CHANGELOG.md ├── CHANGELOG_OLD.md ├── LICENSE ├── README.md ├── README_OLD.md ├── files │ └── multicore-sys-monitor@ccadeptic23 │ │ ├── 3.0 │ │ ├── ConfigSettings.js │ │ ├── DataProviders.js │ │ ├── ErrorApplet.js │ │ ├── Graphs.js │ │ ├── SpawnProcess.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── prefs.js │ │ ├── prefsui.glade │ │ └── stylesheet.css │ │ ├── 3.2 │ │ ├── ConfigSettings.js │ │ ├── DataProviders.js │ │ ├── ErrorApplet.js │ │ ├── Graphs.js │ │ ├── SpawnProcess.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── prefs.js │ │ ├── prefsui.glade │ │ └── stylesheet.css │ │ ├── 3.4 │ │ ├── ConfigSettings.js │ │ ├── DataProviders.js │ │ ├── Graphs.js │ │ ├── SpawnProcess.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── prefs.js │ │ ├── prefsui.glade │ │ ├── stylesheet.css │ │ └── utils.js │ │ ├── 4.0 │ │ ├── ConfigSettings.js │ │ ├── DataProviders.js │ │ ├── Graphs.js │ │ ├── SpawnProcess.js │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── prefs.js │ │ ├── prefsui.glade │ │ ├── stylesheet.css │ │ ├── tostring.js │ │ └── utils.js │ │ ├── 5.6 │ │ ├── ConfigSettings.js │ │ ├── DataProviders.js │ │ ├── Graphs.js │ │ ├── SpawnProcess.js │ │ ├── applet.js │ │ ├── disks.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── prefs.js │ │ ├── prefsui.glade │ │ ├── stylesheet.css │ │ ├── tostring.js │ │ ├── util.js │ │ └── utils.js │ │ ├── 6.0 │ │ ├── ConfigSettings.js │ │ ├── DataProviders.js │ │ ├── Graphs.js │ │ ├── SpawnProcess.js │ │ ├── applet.js │ │ ├── disks.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── prefs.js │ │ ├── prefsui.glade │ │ ├── stylesheet.css │ │ ├── tostring.js │ │ ├── util.js │ │ └── utils.js │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── icons │ │ │ ├── MCSM-symbolic.svg │ │ │ └── MCSM.png │ │ ├── lib │ │ │ ├── Graphs.js │ │ │ ├── mainloopTools.js │ │ │ └── tostring.js │ │ └── settings-schema.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── multicore-sys-monitor@ccadeptic23.pot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── scripts │ │ ├── MemoryStats.txt │ │ ├── OLD │ │ ├── get-cpu-data.sh │ │ ├── get-cpu-data2.sh │ │ ├── get-cpu-data3 (autre copie).sh │ │ ├── get-cpu-data3 (copie).sh │ │ ├── get-cpu-data3.sh │ │ ├── get-cpu-raw-data.sh │ │ ├── get-mem-data.sh │ │ ├── get-mem-raw-data.sh │ │ ├── get-network-data.sh │ │ └── get-swap.sh │ │ ├── commands.txt │ │ ├── get-disk-info.sh │ │ ├── get-disk-mounts.sh │ │ ├── get-network-devices.sh │ │ └── get-sudoers.sh ├── info.json ├── locale.sh └── screenshot.png ├── mybookmarks@markbokil.com ├── files │ └── mybookmarks@markbokil.com │ │ ├── applet.js │ │ ├── config.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── mybookmarks.properties │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── mybookmarks@markbokil.com.pot │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── mylauncher@markbokil.com ├── files │ └── mylauncher@markbokil.com │ │ ├── COPYING │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── mylauncher.properties │ │ ├── mylauncher.svg │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── mylauncher@markbokil.com.pot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── run-minecraft.sh │ │ ├── settings.js │ │ └── show-desktop.sh ├── info.json └── screenshot.png ├── netusagemonitor@pdcurtis ├── .gitignore ├── CHANGELOG.md ├── README.md ├── files │ └── netusagemonitor@pdcurtis │ │ ├── 3.2 │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── alertScript │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── icon.png │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ ├── suspendScript │ │ └── transdot.gif │ │ ├── 4.0 │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── alertScript │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── icon.png │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ ├── suspendScript.sh │ │ └── transdot.gif │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── alertScript │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── netusagemonitor@pdcurtis.pot │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ ├── suspendScript │ │ └── transdot.gif ├── info.json └── screenshot.png ├── network@brownsr ├── README.md ├── files │ └── network@brownsr │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── network@brownsr.pot │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── networkmonitor@axel358 ├── README.md ├── files │ └── networkmonitor@axel358 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── networkmonitor@axel358.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── nextslide@yaya-cout ├── files │ └── nextslide@yaya-cout │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── slideshow-disabled-symbolic.svg │ │ └── slideshow-next-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nextslide@yaya-cout.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── nightlight@Severga ├── README.md ├── files │ └── nightlight@Severga │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nightlight@Severga.pot │ │ ├── nl.po │ │ ├── ru.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── nightscout@ranneft ├── LICENSE ├── README.md ├── files │ └── nightscout@ranneft │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── nightscout.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nightscout@ranneft.pot │ │ ├── nl.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── nordvpn-indicator@nickdurante ├── README.md ├── files │ └── nordvpn-indicator@nickdurante │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── nordvpn-indicator@nickdurante.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── notification-mute@jgillula ├── README.md ├── files │ └── notification-mute@jgillula │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── allow-notifications-symbolic.svg │ │ └── mute-notifications-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── notification-mute@jgillula.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── notifications-enhanced@hilyxx ├── README.md ├── files │ └── notifications-enhanced@hilyxx │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── alt-critical-notif-symbolic.svg │ │ ├── critical-notif-symbolic.svg │ │ ├── empty-notification-symbolic.svg │ │ ├── low-notif-symbolic.svg │ │ ├── new-notif-symbolic.svg │ │ └── notification-off-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── notifications-enhanced@hilyxx.pot │ │ ├── pt_BR.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── nvidia-temp@sophie-la-li ├── README.md ├── files │ └── nvidia-temp@sophie-la-li │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── nvidia-temp@sophie-la-li.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── nvidiaprime@pdcurtis ├── CHANGELOG.md ├── README.md ├── files │ └── nvidiaprime@pdcurtis │ │ ├── 3.8 │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── gputempscript.sh │ │ ├── icon.png │ │ ├── icons │ │ │ ├── intel.svg │ │ │ ├── nvidia.png │ │ │ ├── nvidia.svg │ │ │ ├── prime-tray-intel.png │ │ │ └── prime-tray-nvidia.png │ │ └── settings-schema.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── gputempscript.sh │ │ ├── icon.png │ │ ├── icons │ │ ├── intel.svg │ │ ├── nvidia.png │ │ ├── nvidia.svg │ │ ├── prime-tray-intel.png │ │ └── prime-tray-nvidia.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── nvidiaprime@pdcurtis.pot │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── octopussy@centurix ├── README.md ├── files │ └── octopussy@centurix │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon_starting.png │ │ ├── icon_unavailable.png │ │ ├── metadata.json │ │ ├── octoprint.js │ │ ├── po │ │ ├── .gitkeep │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── octopussy@centurix.pot │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── reload.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── officeCenter@scollins ├── README.md ├── files │ └── officeCenter@scollins │ │ ├── applet.js │ │ ├── icon.png │ │ ├── link-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── officeCenter@scollins.pot │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── onekoToggle@kusch3l ├── README.md ├── files │ └── onekoToggle@kusch3l │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── running.png │ │ └── stopped.png │ │ ├── lib │ │ ├── mainloopTools.js │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── oneko.sh │ │ └── po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ └── onekoToggle@kusch3l.pot ├── info.json └── screenshot.png ├── pa-equalizer@jschug.com ├── README.md ├── files │ └── pa-equalizer@jschug.com │ │ ├── applet.js │ │ ├── equalizer-symbolic.svg │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pa-equalizer@jschug.com.pot │ │ ├── pt_BR.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── panel-tweaks@anaximeno ├── README.md ├── TODO.md ├── files │ └── panel-tweaks@anaximeno │ │ ├── 5.4 │ │ ├── applet.js │ │ ├── constants.js │ │ ├── helpers.js │ │ ├── settings-schema.json │ │ └── settingsController.js │ │ ├── icon.png │ │ ├── icons │ │ └── panel-tweaks-icon-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── panel-tweaks@anaximeno.pot │ │ ├── pt.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── paneldo@beatlink ├── .vscode │ └── settings.json ├── README.md ├── files │ └── paneldo@beatlink │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── paneldo@beatlink.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── screenshot.png └── settings.png ├── password-generator@spencerlommel.com ├── README.md ├── files │ └── password-generator@spencerlommel.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── password-generator@spencerlommel.com.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── pin-unpin-panel@anaximeno ├── README.md ├── files │ └── pin-unpin-panel@anaximeno │ │ ├── 5.4 │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── icons │ │ ├── pin-symbolic.svg │ │ └── unpin-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pin-unpin-panel@anaximeno.pot │ │ ├── pt.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── places-bookmarks@dmo60.de ├── README.md ├── files │ └── places-bookmarks@dmo60.de │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── places-bookmarks@dmo60.de.pot │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── places-with-terminal@mtwebster ├── README.md ├── files │ └── places-with-terminal@mtwebster │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── places-with-terminal@mtwebster.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── placesCenter@scollins ├── README.md ├── files │ └── placesCenter@scollins │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── placesCenter@scollins.pot │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── search.py │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── pomodoro@gregfreeman.org ├── CHANGELOG.md ├── README.md ├── files │ └── pomodoro@gregfreeman.org │ │ ├── 3.6 │ │ ├── applet.js │ │ ├── settings-schema.json │ │ ├── sound.js │ │ └── timer.js │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── settings-schema.json │ │ ├── sound.js │ │ └── timer.js │ │ ├── bin │ │ └── kill-looping-sound.py │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pomodoro@gregfreeman.org.pot │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── pomodoro-break-symbolic.svg │ │ ├── pomodoro-break.png │ │ ├── pomodoro-stop-symbolic.svg │ │ ├── pomodoro-stop.png │ │ ├── pomodoro-symbolic.svg │ │ ├── pomodoro.png │ │ └── sounds │ │ ├── deskbell.wav │ │ ├── tick.ogg │ │ └── warn.wav ├── info.json └── screenshot.png ├── power-profiles@rcalixte ├── CHANGELOG.md ├── README.md ├── files │ └── power-profiles@rcalixte │ │ ├── 5.4 │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── README.md │ │ ├── icon.png │ │ ├── icons │ │ ├── classic │ │ │ ├── profile-0-symbolic.svg │ │ │ ├── profile-100-symbolic.svg │ │ │ └── profile-50-symbolic.svg │ │ └── papirus │ │ │ ├── profile-0-symbolic.svg │ │ │ ├── profile-100-symbolic.svg │ │ │ └── profile-50-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── power-profiles@rcalixte.pot │ │ ├── pt.po │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── printers@linux-man ├── LICENSE ├── README.md ├── files │ └── printers@linux-man │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── printers@linux-man.pot │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── profile-switcher@pixunil ├── files │ └── profile-switcher@pixunil │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── profile-switcher@pixunil.pot │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── proxy-mode@yrtimid ├── CHANGELOG.md ├── README.md ├── files │ └── proxy-mode@yrtimid │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── proxy-mode@yrtimid.pot │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── ptt@thbemme ├── README.md ├── files │ └── ptt@thbemme │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── micoff.svg │ │ ├── micoff_dark.svg │ │ ├── micon.svg │ │ ├── micon_dark.svg │ │ ├── micready.svg │ │ ├── micready_dark.svg │ │ ├── microphone.svg │ │ └── microphone_dark.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ptt@thbemme.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── qredshift@quintao ├── README.md ├── files │ └── qredshift@quintao │ │ ├── applet.js │ │ ├── assets │ │ ├── base.conf │ │ ├── light-off.svg │ │ └── light-on.svg │ │ ├── icon.png │ │ ├── icons │ │ ├── redshift-status-off-symbolic.svg │ │ └── redshift-status-on-symbolic.svg │ │ ├── js │ │ ├── QUtils.js │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── es_MX.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── oc.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── qredshift@quintao.pot │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── radio@driglu4it ├── README.md ├── files │ └── radio@driglu4it │ │ ├── 3.0 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── settings-schema.json │ │ ├── 4.6 │ │ ├── RadioSearchWidget.py │ │ ├── allStations.json │ │ ├── applet.js │ │ ├── download-dialog-mpris.py │ │ ├── icon.png │ │ ├── icons │ │ ├── radio-applet.js │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 6.4 │ │ ├── RadioSearchWidget.py │ │ ├── allStations.json │ │ ├── applet.js │ │ ├── download-dialog-mpris.py │ │ ├── icon.png │ │ ├── icons │ │ ├── radio-applet.js │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ └── webpack.config.js │ │ ├── icon.png │ │ ├── icons │ │ ├── license.txt │ │ ├── radioapplet-bicolor.svg │ │ ├── radioapplet-fullcolor.png │ │ ├── radioapplet-symbolic.svg │ │ └── south-arrow-weather-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── is.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── radio@driglu4it.pot │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json ├── jest.config.js ├── package.json ├── screenshot.png ├── src │ ├── ci.d.ts │ ├── consts.ts │ ├── functions │ │ ├── copyText.ts │ │ ├── limitString.ts │ │ ├── promiseHelpers.ts │ │ └── tweens.ts │ ├── index.ts │ ├── lib │ │ ├── ActivWidget.ts │ │ ├── AppletContainer.ts │ │ ├── AppletIcon.ts │ │ ├── AppletLabel.ts │ │ ├── HttpHandler.ts │ │ ├── PopupMenu.ts │ │ ├── PopupSeperator.ts │ │ ├── PopupSubMenu.ts │ │ ├── SimpleMenuItem.ts │ │ ├── Slider.ts │ │ └── notify.ts │ ├── polyfill.ts │ ├── services │ │ ├── Config.ts │ │ ├── mpv │ │ │ ├── CheckInstallation.ts │ │ │ └── MpvHandler.ts │ │ └── youtubeDownload │ │ │ ├── YoutubeDl.ts │ │ │ ├── YoutubeDownloadManager.ts │ │ │ └── YtDlp.ts │ ├── tsconfig.json │ ├── types.ts │ └── ui │ │ ├── InfoSection.ts │ │ ├── RadioApplet │ │ ├── RadioAppletContainer.ts │ │ ├── RadioAppletIcon.ts │ │ ├── RadioAppletLabel.ts │ │ ├── RadioAppletTooltip.ts │ │ └── YoutubeDownloadIcon.ts │ │ ├── RadioContextMenu.ts │ │ ├── RadioPopupMenu │ │ ├── ChannelList.ts │ │ ├── ChannelMenuItem.ts │ │ ├── MediaControlToolbar │ │ │ ├── ControlBtn.ts │ │ │ ├── CopyButton.ts │ │ │ ├── DownloadButton.ts │ │ │ ├── MediaControlToolbar.ts │ │ │ ├── PlayPauseButton.ts │ │ │ └── StopButton.ts │ │ ├── RadioPopupMenu.ts │ │ └── UpdateStationsMenuItem.ts │ │ ├── Seeker.ts │ │ └── VolumeSlider.ts ├── tests │ ├── __tests__ │ │ ├── functions │ │ │ └── downloadFromYoutube.ts │ │ ├── lib │ │ │ └── IconMenuItem.ts │ │ ├── mpv │ │ │ └── MpvHandler.ts │ │ └── ui │ │ │ ├── Applet │ │ │ ├── AppletIcon.ts │ │ │ ├── AppletLabel.ts │ │ │ └── AppletTooltip.ts │ │ │ └── ChannelList │ │ │ ├── ChannelList.ts │ │ │ └── ChannelMenuItem.ts │ ├── ci.d.ts │ ├── tsconfig.json │ └── utils │ │ ├── MpvMock.ts │ │ └── TriggerEvent.ts ├── tsconfig-base.json └── webpack.config.js ├── rancher@centurix ├── README.md ├── files │ └── rancher@centurix │ │ ├── applet.js │ │ ├── homestead.js │ │ ├── homestead_yaml_reader.js │ │ ├── icon.png │ │ ├── icons │ │ ├── laravel_down_128x128.png │ │ ├── laravel_down_16x16.png │ │ ├── laravel_down_32x32.png │ │ ├── laravel_down_64x64.png │ │ ├── laravel_missing_128x128.png │ │ ├── laravel_missing_16x16.png │ │ ├── laravel_missing_32x32.png │ │ ├── laravel_missing_64x64.png │ │ ├── laravel_up_128x128.png │ │ ├── laravel_up_16x16.png │ │ ├── laravel_up_32x32.png │ │ └── laravel_up_64x64.png │ │ ├── metadata.json │ │ ├── po │ │ ├── .gitkeep │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── rancher@centurix.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── reload.sh │ │ ├── settings-schema.json │ │ ├── terminal_reader.js │ │ └── util.js ├── info.json └── screenshot.png ├── ratecurrency@magner ├── README.md ├── files │ └── ratecurrency@magner │ │ ├── applet.js │ │ ├── icon.png │ │ ├── images │ │ ├── coins │ │ │ ├── 1inch.png │ │ │ ├── aave.png │ │ │ ├── abbc.png │ │ │ ├── ada.png │ │ │ ├── algo.png │ │ │ ├── alpha.png │ │ │ ├── ampl.png │ │ │ ├── ant.png │ │ │ ├── ar.png │ │ │ ├── atom.png │ │ │ ├── avax.png │ │ │ ├── bal.png │ │ │ ├── band.png │ │ │ ├── bat.png │ │ │ ├── bcd.png │ │ │ ├── bch.png │ │ │ ├── bnb.png │ │ │ ├── bnt.png │ │ │ ├── bsv.png │ │ │ ├── btc.png │ │ │ ├── btcb.png │ │ │ ├── btg.png │ │ │ ├── bts.png │ │ │ ├── btt.png │ │ │ ├── busd.png │ │ │ ├── cake.png │ │ │ ├── cel.png │ │ │ ├── celo.png │ │ │ ├── chsb.png │ │ │ ├── chz.png │ │ │ ├── ckb.png │ │ │ ├── comp.png │ │ │ ├── cro.png │ │ │ ├── crv.png │ │ │ ├── cvc.png │ │ │ ├── cvt.png │ │ │ ├── dai.png │ │ │ ├── dash.png │ │ │ ├── dcr.png │ │ │ ├── dgb.png │ │ │ ├── dnt.png │ │ │ ├── doge.png │ │ │ ├── dot.png │ │ │ ├── egld.png │ │ │ ├── enj.png │ │ │ ├── eos.png │ │ │ ├── etc.png │ │ │ ├── eth.png │ │ │ ├── ewt.png │ │ │ ├── fet.png │ │ │ ├── fil.png │ │ │ ├── flow.png │ │ │ ├── ftm.png │ │ │ ├── ftt.png │ │ │ ├── fun.png │ │ │ ├── glm.png │ │ │ ├── gno.png │ │ │ ├── grt.png │ │ │ ├── hbar.png │ │ │ ├── hedg.png │ │ │ ├── hnt.png │ │ │ ├── hot.png │ │ │ ├── ht.png │ │ │ ├── husd.png │ │ │ ├── icx.png │ │ │ ├── inj.png │ │ │ ├── iost.png │ │ │ ├── iotx.png │ │ │ ├── kava.png │ │ │ ├── kcs.png │ │ │ ├── knc.png │ │ │ ├── ksm.png │ │ │ ├── leo.png │ │ │ ├── link.png │ │ │ ├── lrc.png │ │ │ ├── lsk.png │ │ │ ├── ltc.png │ │ │ ├── luna.png │ │ │ ├── maid.png │ │ │ ├── mana.png │ │ │ ├── matic.png │ │ │ ├── mft.png │ │ │ ├── miota.png │ │ │ ├── mkr.png │ │ │ ├── mona.png │ │ │ ├── mrph.png │ │ │ ├── nano.png │ │ │ ├── near.png │ │ │ ├── neo.png │ │ │ ├── nexo.png │ │ │ ├── nmr.png │ │ │ ├── npxs.png │ │ │ ├── nu.png │ │ │ ├── ocean.png │ │ │ ├── okb.png │ │ │ ├── omg.png │ │ │ ├── ont.png │ │ │ ├── oxt.png │ │ │ ├── pax.png │ │ │ ├── paxg.png │ │ │ ├── qnt.png │ │ │ ├── qtum.png │ │ │ ├── ren.png │ │ │ ├── renbtc.png │ │ │ ├── rep.png │ │ │ ├── rev.png │ │ │ ├── rif.png │ │ │ ├── rlc.png │ │ │ ├── rsr.png │ │ │ ├── rune.png │ │ │ ├── rvn.png │ │ │ ├── sc.png │ │ │ ├── snt.png │ │ │ ├── snx.png │ │ │ ├── sol.png │ │ │ ├── srm.png │ │ │ ├── storj.png │ │ │ ├── stx.png │ │ │ ├── sushi.png │ │ │ ├── sxp.png │ │ │ ├── tel.png │ │ │ ├── tfuel.png │ │ │ ├── theta.png │ │ │ ├── tomo.png │ │ │ ├── trx.png │ │ │ ├── tusd.png │ │ │ ├── ubt.png │ │ │ ├── uma.png │ │ │ ├── uni.png │ │ │ ├── usdc.png │ │ │ ├── usdt.png │ │ │ ├── ust.png │ │ │ ├── utk.png │ │ │ ├── vet.png │ │ │ ├── vgx.png │ │ │ ├── waves.png │ │ │ ├── wbtc.png │ │ │ ├── xem.png │ │ │ ├── xlm.png │ │ │ ├── xmr.png │ │ │ ├── xrp.png │ │ │ ├── xtz.png │ │ │ ├── xvg.png │ │ │ ├── xvs.png │ │ │ ├── yfi.png │ │ │ ├── zb.png │ │ │ ├── zec.png │ │ │ ├── zen.png │ │ │ ├── zil.png │ │ │ └── zrx.png │ │ └── fiat_money │ │ │ ├── aud.png │ │ │ ├── bgn.png │ │ │ ├── brl.png │ │ │ ├── cad.png │ │ │ ├── chf.png │ │ │ ├── cny.png │ │ │ ├── czk.png │ │ │ ├── dkk.png │ │ │ ├── eur.png │ │ │ ├── gbp.png │ │ │ ├── hkd.png │ │ │ ├── huf.png │ │ │ ├── inr.png │ │ │ ├── jpy.png │ │ │ ├── krw.png │ │ │ ├── nok.png │ │ │ ├── pln.png │ │ │ ├── ron.png │ │ │ ├── rub.png │ │ │ ├── sek.png │ │ │ ├── sgd.png │ │ │ ├── source.txt │ │ │ ├── try.png │ │ │ ├── usd.png │ │ │ └── zar.png │ │ ├── metadata.json │ │ ├── modules │ │ ├── api.js │ │ ├── contextMenu.js │ │ ├── graph.js │ │ ├── helpers.js │ │ ├── notifications.js │ │ ├── parseEUbank.js │ │ ├── parseRUbank.js │ │ └── stringsForTranslation.js │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ratecurrency@magner.pot │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── redshift@marvel4u ├── README.md ├── files │ └── redshift@marvel4u │ │ ├── Material_Design_Icons │ │ ├── Changes │ │ ├── LICENSE │ │ ├── lightbulb-on-outline.svg │ │ ├── lightbulb-on-outline_orig.svg │ │ ├── lightbulb.svg │ │ ├── weather-sunset.svg │ │ └── weather-sunset_orig.svg │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── redshift@marvel4u.pot │ │ ├── ru.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── redshift-off.svg │ │ ├── redshift-on.svg │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── restart-cinnamon@kolle ├── files │ └── restart-cinnamon@kolle │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── restart-cinnamon@kolle.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── restart-symbolic.svg │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── rssNewsticker@KopfDesDaemons ├── README.md ├── files │ └── rssNewsticker@KopfDesDaemons │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── rssNewsticker@KopfDesDaemons.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── rswitcher@nixdev.com ├── README.md ├── files │ └── rswitcher@nixdev.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── rswitcher@nixdev.com.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── rswitcher │ │ └── scale.py ├── info.json └── screenshot.png ├── rust-menu@jerrywham ├── README.md ├── files │ └── rust-menu@jerrywham │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── rust-menu@jerrywham.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── rwall@typicalfoobar ├── LICENSE.md ├── README.md ├── files │ └── rwall@typicalfoobar │ │ ├── applet.js │ │ ├── bin │ │ └── rwall │ │ ├── etc │ │ └── rwall.ini │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── rwall@typicalfoobar.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── screen-inhibit@mtwebster ├── CHANGELOG.md ├── README.md ├── files │ └── screen-inhibit@mtwebster │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── screen-inhibit-active-symbolic.svg │ │ └── screen-inhibit-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── screen-inhibit@mtwebster.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── scripts@paucapo.com ├── CHANGELOG.md ├── README.md ├── files │ └── scripts@paucapo.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── scripts@paucapo.com.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── sct@skulptist.de ├── LICENSE ├── README.md ├── files │ └── sct@skulptist.de │ │ ├── applet.js │ │ ├── connectSct.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ └── appletIcon-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sct@skulptist.de.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── translation.js ├── info.json └── screenshot.png ├── search-box@mtwebster ├── CHANGELOG.md ├── README.md ├── files │ └── search-box@mtwebster │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── img │ │ ├── screenshot.xcf │ │ └── screenshot_OLD.png │ │ ├── metadata.json │ │ ├── old │ │ ├── 3.2 │ │ │ ├── applet.js │ │ │ ├── icon.png │ │ │ └── settings-schema.json │ │ ├── 5.4 │ │ │ ├── applet.js │ │ │ ├── icon.png │ │ │ └── settings-schema.json │ │ ├── applet.js │ │ ├── appletSettings.js │ │ ├── appletSettingsUI.js │ │ └── providers.conf │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── search-box@mtwebster.pot │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── separator2@zyzz ├── files │ └── separator2@zyzz │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── separator2@zyzz.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── serviceLauncher@hulygun ├── files │ └── serviceLauncher@hulygun │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── serviceLauncher@hulygun.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── web-programming.png ├── info.json └── screenshot.png ├── sessionManager@scollins ├── README.md ├── files │ └── sessionManager@scollins │ │ ├── applet.js │ │ ├── buttons │ │ ├── guest-symbolic.svg │ │ ├── guest.svg │ │ ├── hibernate-symbolic.svg │ │ ├── hibernate.svg │ │ ├── lock-symbolic.svg │ │ ├── lock.svg │ │ ├── logOff-symbolic.svg │ │ ├── logOff.svg │ │ ├── restart-symbolic.svg │ │ ├── restart.svg │ │ ├── shutDown-symbolic.svg │ │ ├── shutDown.svg │ │ ├── sleep-symbolic.svg │ │ ├── sleep.svg │ │ ├── suspend-symbolic.svg │ │ ├── suspend.svg │ │ ├── uSwitch-symbolic.svg │ │ └── uSwitch.svg │ │ ├── commands │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sessionManager@scollins.pot │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── shadowsocks-switch@Klavionik ├── README.md ├── files │ └── shadowsocks-switch@Klavionik │ │ ├── LICENSE │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon-connected.png │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── shadowsocks-switch@Klavionik.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── show-hide-applets@mohammad-sn ├── files │ └── show-hide-applets@mohammad-sn │ │ ├── 1-symbolic.svg │ │ ├── 1v-symbolic.svg │ │ ├── 2-symbolic.svg │ │ ├── 2v-symbolic.svg │ │ ├── applet.js │ │ ├── icon info │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── show-hide-applets@mohammad-sn.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── shutdown-timer@webum.by ├── files │ └── shutdown-timer@webum.by │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── shutdown-timer@webum.by.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── signout@kayfo ├── README.md ├── files │ └── signout@kayfo │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── signout@kayfo.pot │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── simple-timer@naheller ├── README.md ├── files │ └── simple-timer@naheller │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── alarm-green.svg │ │ └── alarm-white.svg │ │ └── metadata.json ├── info.json └── screenshot.png ├── skeuos-remix@benlazhar.com ├── LICENSE ├── README.md ├── files │ └── skeuos-remix@benlazhar.com │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── skeuos-remix@benlazhar.com.pot │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── sleepTimer@JDatPNW ├── LICENSE ├── files │ └── sleepTimer@JDatPNW │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sleepTimer@JDatPNW.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── smallcalc_applet@lerc.sds ├── files │ └── smallcalc_applet@lerc.sds │ │ ├── applet.js │ │ ├── icon.png │ │ ├── math.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── smallcalc_applet@lerc.sds.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── softyubikey@yubiserver.include.gr ├── files │ └── softyubikey@yubiserver.include.gr │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── softyubikey@yubiserver.include.gr.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── softyubikey-settings │ │ ├── softyubikey.png │ │ ├── softyubikey2.png │ │ ├── ui │ │ └── softyubikey.ui │ │ ├── ykey │ │ └── yubisoft.cfg ├── info.json └── screenshot.png ├── sound150@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── sound150@claudiux │ │ ├── 2.8 │ │ ├── InstallLanguages.js │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 3.4 │ │ ├── InstallLanguages.js │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 4.4 │ │ ├── S150_PopupSliderMenuItem.js │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 4.6 │ │ ├── S150_PopupSliderMenuItem.js │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 5.4 │ │ ├── applet.js │ │ ├── icons │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ ├── audio-volume-high-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-high-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ ├── audio-volume-low-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-low-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ ├── audio-volume-medium-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-medium-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ ├── audio-volume-muted-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-muted-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ ├── audio-volume-overamplified-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-overamplified-with-mic-enabled-symbolic.svg │ │ │ ├── audio-x-generic-symbolic.svg │ │ │ ├── audio-x-generic-with-mic-disabled-symbolic.svg │ │ │ ├── audio-x-generic-with-mic-enabled-symbolic.svg │ │ │ ├── easyeffects-symbolic.svg │ │ │ ├── easyeffects.svg │ │ │ ├── highlights.css │ │ │ ├── media-optical-cd-audio-symbolic.svg │ │ │ ├── media-optical-cd-audio-with-mic-disabled-symbolic.svg │ │ │ ├── media-optical-cd-audio-with-mic-enabled-symbolic.svg │ │ │ ├── microphone-disabled-symbolic.svg │ │ │ ├── microphone-hardware-disabled-symbolic.svg │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ ├── microphone-sensitivity-overamplified-symbolic.svg │ │ │ ├── pulseeffects-symbolic.svg │ │ │ ├── pulseeffects.svg │ │ │ └── restart-symbolic.svg │ │ ├── lib │ │ │ ├── htmlEncodeDecode.js │ │ │ └── xml2json.min.js │ │ └── settings-schema.json │ │ ├── 6.2 │ │ ├── applet.js │ │ ├── icons │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ ├── audio-volume-high-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-high-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ ├── audio-volume-low-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-low-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ ├── audio-volume-medium-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-medium-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ ├── audio-volume-muted-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-muted-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ ├── audio-volume-overamplified-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-overamplified-with-mic-enabled-symbolic.svg │ │ │ ├── audio-x-generic-symbolic.svg │ │ │ ├── audio-x-generic-with-mic-disabled-symbolic.svg │ │ │ ├── audio-x-generic-with-mic-enabled-symbolic.svg │ │ │ ├── easyeffects-symbolic.svg │ │ │ ├── easyeffects.svg │ │ │ ├── highlights.css │ │ │ ├── media-optical-cd-audio-symbolic.svg │ │ │ ├── media-optical-cd-audio-with-mic-disabled-symbolic.svg │ │ │ ├── media-optical-cd-audio-with-mic-enabled-symbolic.svg │ │ │ ├── microphone-disabled-symbolic.svg │ │ │ ├── microphone-hardware-disabled-symbolic.svg │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ ├── microphone-sensitivity-overamplified-symbolic.svg │ │ │ ├── pulseeffects-symbolic.svg │ │ │ ├── pulseeffects.svg │ │ │ └── restart-symbolic.svg │ │ ├── lib │ │ │ ├── htmlEncodeDecode.js │ │ │ └── xml2json.min.js │ │ └── settings-schema.json │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── icons │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ ├── audio-volume-high-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-high-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ ├── audio-volume-low-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-low-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ ├── audio-volume-medium-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-medium-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ ├── audio-volume-muted-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-muted-with-mic-enabled-symbolic.svg │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ ├── audio-volume-overamplified-with-mic-disabled-symbolic.svg │ │ │ ├── audio-volume-overamplified-with-mic-enabled-symbolic.svg │ │ │ ├── audio-x-generic-symbolic.svg │ │ │ ├── audio-x-generic-with-mic-disabled-symbolic.svg │ │ │ ├── audio-x-generic-with-mic-enabled-symbolic.svg │ │ │ ├── easyeffects-symbolic.svg │ │ │ ├── easyeffects.svg │ │ │ ├── highlights.css │ │ │ ├── media-optical-cd-audio-symbolic.svg │ │ │ ├── media-optical-cd-audio-with-mic-disabled-symbolic.svg │ │ │ ├── media-optical-cd-audio-with-mic-enabled-symbolic.svg │ │ │ ├── microphone-disabled-symbolic.svg │ │ │ ├── microphone-hardware-disabled-symbolic.svg │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ ├── microphone-sensitivity-overamplified-symbolic.svg │ │ │ ├── netflix.png │ │ │ ├── pulseeffects-symbolic.svg │ │ │ ├── pulseeffects.svg │ │ │ └── restart-symbolic.svg │ │ ├── lib │ │ │ ├── controlButton.js │ │ │ ├── del_song_arts.js │ │ │ ├── htmlEncodeDecode.js │ │ │ ├── mainloopTools.js │ │ │ ├── s150PopupMenu.js │ │ │ ├── volumeSlider.js │ │ │ └── xml2json.min.js │ │ └── settings-schema.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sound150@claudiux.pot │ │ ├── sv.po │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── scripts │ │ ├── del_song_arts.sh │ │ ├── generate_mo.sh │ │ ├── get-real-scale.py │ │ ├── get_album_art.sh │ │ ├── install_imagemagick.sh │ │ ├── install_playerctl.sh │ │ ├── kill_playerctld.sh │ │ ├── make_icon.sh │ │ ├── rm_tmp_files.sh │ │ └── run_playerctld.sh ├── info.json └── screenshot.png ├── spices-notifier@germanfr ├── README.md ├── files │ └── spices-notifier@germanfr │ │ ├── LICENSE │ │ ├── README.md │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── spices-applets-symbolic.svg │ │ ├── spices-comments-symbolic.svg │ │ ├── spices-desklets-symbolic.svg │ │ ├── spices-extensions-symbolic.svg │ │ └── spices-themes-symbolic.svg │ │ ├── lib │ │ └── httpLib.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── spices-notifier@germanfr.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── sshconnect@foobar-beer ├── README.md ├── files │ └── sshconnect@foobar-beer │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sshconnect@foobar-beer.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── sshlauncher@sumo ├── files │ └── sshlauncher@sumo │ │ ├── applet.js │ │ ├── icon.png │ │ ├── launch_editor.sh │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ru.po │ │ ├── sshlauncher@sumo.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── ssm@Severga ├── README.md ├── files │ └── ssm@Severga │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── ru.po │ │ ├── ssm@Severga.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── stacks@centurix ├── README.md ├── files │ └── stacks@centurix │ │ ├── applet.js │ │ ├── dockercompose.js │ │ ├── icon.png │ │ ├── icons │ │ ├── docker_compose_128x128.png │ │ ├── docker_compose_16x16.png │ │ ├── docker_compose_32x32.png │ │ ├── docker_compose_64x64.png │ │ ├── docker_compose_missing_128x128.png │ │ ├── docker_compose_missing_16x16.png │ │ ├── docker_compose_missing_32x32.png │ │ └── docker_compose_missing_64x64.png │ │ ├── metadata.json │ │ ├── po │ │ ├── .gitkeep │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── stacks@centurix.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── reload.sh │ │ ├── settings-schema.json │ │ └── util.js ├── info.json └── screenshot.png ├── standardIconNames@jerrywham ├── README.md ├── files │ └── standardIconNames@jerrywham │ │ ├── applet.js │ │ ├── copyscript.py │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── standardIconNames@jerrywham.pot │ │ ├── vi.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── stevedore@centurix ├── README.md ├── files │ └── stevedore@centurix │ │ ├── README.md │ │ ├── applet.js │ │ ├── docker.js │ │ ├── icon.png │ │ ├── icons │ │ ├── docker.png │ │ ├── icon.png │ │ ├── missing.png │ │ ├── working_1.png │ │ └── working_2.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── stevedore@centurix.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── reload.sh │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ └── terminal_reader.js ├── info.json └── screenshot.png ├── sticky@scollins ├── README.md ├── files │ └── sticky@scollins │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── icons │ │ ├── add-checklist-symbolic.svg │ │ ├── add-note-symbolic.svg │ │ ├── add-symbolic.svg │ │ ├── checkbox-checked.svg │ │ ├── checkbox-unchecked.svg │ │ ├── hide-symbolic.svg │ │ ├── pin-symbolic.svg │ │ └── sticky-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ru.po │ │ ├── sticky@scollins.pot │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── stopwatch@pdcurtis ├── CHANGELOG.md ├── README.md ├── files │ └── stopwatch@pdcurtis │ │ ├── 3.0 │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 3.8 │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── applet.js │ │ ├── changelog.txt │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── stopwatch@pdcurtis.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── suspend@janax ├── CHANGELOG.md ├── README.md ├── files │ └── suspend@janax │ │ ├── README.txt │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── suspend@janax.pot │ │ ├── sv.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── sync@szlldm ├── LICENSE ├── README.md ├── files │ └── sync@szlldm │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ko.po │ │ ├── nl.po │ │ ├── sync@szlldm.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── sysmon@rohan ├── README.md ├── files │ └── sysmon@rohan │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── cpu-symbolic.svg │ │ └── ram-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sysmon@rohan.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── sysmonitor@orcus ├── CHANGELOG.md ├── README.md ├── files │ └── sysmonitor@orcus │ │ ├── 3.0 │ │ ├── __init__.js │ │ ├── applet.js │ │ ├── graph.js │ │ ├── icon.png │ │ ├── providers.js │ │ └── settings-schema.json │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── graph.js │ │ ├── icon.png │ │ ├── init.js │ │ ├── providers.js │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── sv.po │ │ ├── sysmonitor@orcus.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── system-controls@rcalixte ├── CHANGELOG.md ├── README.md ├── files │ └── system-controls@rcalixte │ │ ├── 5.4 │ │ ├── applet.js │ │ └── stylesheet.css │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── nl.po │ │ ├── pt.po │ │ ├── system-controls@rcalixte.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── system-monitor@spacy01 ├── files │ └── system-monitor@spacy01 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── system-monitor@spacy01.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── systray-collapsible@koutch ├── README.md ├── files │ └── systray-collapsible@koutch │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── systray-collapsible@koutch.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── tapo@smiklosovic ├── README.md ├── files │ └── tapo@smiklosovic │ │ ├── applet.js │ │ ├── devices.sh │ │ ├── icon.png │ │ ├── js │ │ ├── QUtils.js │ │ └── to-string.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── tapo@smiklosovic.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── screenshot.png └── settings.png ├── temperature@fevimu ├── .eslintrc.json ├── .gitignore ├── files │ └── temperature@fevimu │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── temperature@fevimu.pot │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── stylesheet.css ├── gulpfile.js ├── info.json ├── locale.sh ├── package.json └── screenshot.png ├── test-spice ├── text-to-speech-applet@cardsurf ├── README.md ├── files │ └── text-to-speech-applet@cardsurf │ │ ├── applet.js │ │ ├── appletConstants.js │ │ ├── appletGui.js │ │ ├── clipboard.js │ │ ├── compatibility.js │ │ ├── icon.png │ │ ├── icons │ │ ├── book-off.png │ │ ├── book-on.png │ │ └── book-paused.png │ │ ├── keyboard.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── text-to-speech-applet@cardsurf.pot │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── read_text_selection_clipboard.py │ │ ├── read_text_selection_primary.py │ │ ├── settings-schema.json │ │ ├── shellUtils.js │ │ ├── translation.js │ │ └── translation.sh ├── info.json └── screenshot.png ├── timeout@narutrey ├── LICENSE ├── README.md ├── files │ └── timeout@narutrey │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── timeout@narutrey.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── timer@Severga ├── README.md ├── files │ └── timer@Severga │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── makepot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── ru.po │ │ ├── timer@Severga.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── timeshift-spy@nicog60 ├── CHANGELOG.md ├── LICENSE ├── README.md ├── files │ └── timeshift-spy@nicog60 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── timeshift-error.png │ │ ├── timeshift-idle.png │ │ ├── timeshift-snap-0.png │ │ ├── timeshift-snap-1.png │ │ ├── timeshift-snap-10.png │ │ ├── timeshift-snap-11.png │ │ ├── timeshift-snap-2.png │ │ ├── timeshift-snap-3.png │ │ ├── timeshift-snap-4.png │ │ ├── timeshift-snap-5.png │ │ ├── timeshift-snap-6.png │ │ ├── timeshift-snap-7.png │ │ ├── timeshift-snap-8.png │ │ ├── timeshift-snap-9.png │ │ └── timeshift-wait.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── timeshift-spy@nicog60.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── todo@threefi ├── README.md ├── files │ └── todo@threefi │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── todo@threefi.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── todo.list ├── info.json └── screenshot.png ├── tor-button@shatur ├── CHANGELOG.md ├── README.md ├── files │ └── tor-button@shatur │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── tor-off-symbolic.svg │ │ └── tor-on-symbolic.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── tor-button@shatur.pot │ │ ├── tr.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── trilium-api@beatlink ├── README.md ├── files │ └── trilium-api@beatlink │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── trilium-api@beatlink.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── turn-off-monitor@zablotski ├── README.md ├── files │ └── turn-off-monitor@zablotski │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── turn-off-monitor@zablotski.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── tzclock@lhriley ├── files │ └── tzclock@lhriley │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── tzclock@lhriley.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ └── tzclock_settings.py ├── info.json └── screenshot.png ├── uiscaler@joka42 ├── README.md ├── files │ └── uiscaler@joka42 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── tr.po │ │ ├── uiscaler@joka42.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── uiscaler ├── info.json └── screenshot.png ├── updates-notifier@zamszowy ├── LICENSE ├── README.md ├── files │ └── updates-notifier@zamszowy │ │ ├── applet.js │ │ ├── error-window.js │ │ ├── icon.png │ │ ├── icons │ │ ├── update-notifier-error-dark.svg │ │ ├── update-notifier-error-light.svg │ │ ├── update-notifier-error-symbolic.svg │ │ ├── update-notifier-high-dark.svg │ │ ├── update-notifier-high-fw-dark.svg │ │ ├── update-notifier-high-fw-light.svg │ │ ├── update-notifier-high-fw-symbolic.svg │ │ ├── update-notifier-high-light.svg │ │ ├── update-notifier-high-symbolic.svg │ │ ├── update-notifier-low-dark.svg │ │ ├── update-notifier-low-fw-dark.svg │ │ ├── update-notifier-low-fw-light.svg │ │ ├── update-notifier-low-fw-symbolic.svg │ │ ├── update-notifier-low-light.svg │ │ ├── update-notifier-low-symbolic.svg │ │ ├── update-notifier-medium-dark.svg │ │ ├── update-notifier-medium-fw-dark.svg │ │ ├── update-notifier-medium-fw-light.svg │ │ ├── update-notifier-medium-fw-symbolic.svg │ │ ├── update-notifier-medium-light.svg │ │ ├── update-notifier-medium-symbolic.svg │ │ ├── update-notifier-none-dark.svg │ │ ├── update-notifier-none-light.svg │ │ ├── update-notifier-none-symbolic.svg │ │ └── update-notifier-settings-symbolic.svg │ │ ├── info-window.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── updates-notifier@zamszowy.pot │ │ ├── vi.po │ │ └── zh_TW.po │ │ ├── settings-schema.json │ │ ├── updates.js │ │ └── updates.sh ├── info.json └── screenshot.png ├── uptime@vatanuki.kun ├── README.md ├── files │ └── uptime@vatanuki.kun │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── uptime@vatanuki.kun.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── readme.md ├── screenshot.png ├── screenshot2.png ├── screenshot3.png ├── screenshot4.png ├── screenshot5.png └── screenshot_old.png ├── validate-spice ├── vboxlauncher@mockturtl ├── README.md ├── files │ └── vboxlauncher@mockturtl │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vboxlauncher@mockturtl.pot │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── vnstat@linuxmint.com ├── CHANGELOG.md ├── README.md ├── files │ └── vnstat@linuxmint.com │ │ ├── 4.0 │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── ru.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── vnstat@linuxmint.com.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── vpnLookOut@claudiux ├── CHANGELOG.md ├── README.md ├── files │ └── vpnLookOut@claudiux │ │ ├── 2.8 │ │ ├── applet.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 3.8 │ │ ├── applet.js │ │ ├── assets │ │ │ ├── appIcon.png │ │ │ ├── egAsset.png │ │ │ ├── egClutter.png │ │ │ ├── egCss.css │ │ │ ├── egJSON.json │ │ │ ├── egSelect.png │ │ │ ├── egWebmsg.html │ │ │ ├── select.js │ │ │ ├── spawn.js │ │ │ └── timers.js │ │ ├── egSpawn.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── 4.2 │ │ ├── applet.js │ │ ├── assets │ │ │ ├── appIcon.png │ │ │ ├── egAsset.png │ │ │ ├── egClutter.png │ │ │ ├── egCss.css │ │ │ ├── egJSON.json │ │ │ ├── egSelect.png │ │ │ ├── egWebmsg.html │ │ │ ├── select.js │ │ │ ├── spawn.js │ │ │ └── timers.js │ │ ├── egSpawn.js │ │ ├── icon.png │ │ └── settings-schema.json │ │ ├── CHANGELOG.md │ │ ├── HELP.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TODO.md │ │ ├── help.html │ │ ├── icon.png │ │ ├── icons │ │ ├── byTheme │ │ │ ├── Adwaita │ │ │ │ ├── vpn-off.png │ │ │ │ ├── vpn-on.png │ │ │ │ └── vpn-wait.png │ │ │ ├── Mint-Y │ │ │ │ ├── vpn-off.png │ │ │ │ ├── vpn-on.png │ │ │ │ └── vpn-wait.png │ │ │ └── gnome │ │ │ │ ├── vpn-off.png │ │ │ │ ├── vpn-on.png │ │ │ │ └── vpn-wait.png │ │ ├── default │ │ │ ├── vpn-off.png │ │ │ ├── vpn-on.png │ │ │ └── vpn-wait.png │ │ └── orig │ │ │ ├── 24x24 │ │ │ ├── vpn-off.png │ │ │ ├── vpn-off.xcf │ │ │ ├── vpn-on.png │ │ │ ├── vpn-on.xcf │ │ │ ├── vpn-on6.png │ │ │ ├── vpn-wait.png │ │ │ ├── vpn-wait.xcf │ │ │ └── vpnLookOut.xcf │ │ │ ├── 48x48 │ │ │ ├── vpn-off.png │ │ │ ├── vpn-off2.png │ │ │ ├── vpn-off3.png │ │ │ ├── vpn-off4.png │ │ │ ├── vpn-off5.png │ │ │ ├── vpn-on.png │ │ │ ├── vpn-on2.png │ │ │ ├── vpn-on3.png │ │ │ ├── vpn-on4.png │ │ │ ├── vpn-on5.png │ │ │ ├── vpn-wait.png │ │ │ ├── vpn-wait2.png │ │ │ ├── vpn-wait5.png │ │ │ └── vpnLookOut.png │ │ │ ├── svg │ │ │ ├── vpn-off.svg │ │ │ ├── vpn-on.svg │ │ │ ├── vpn-wait.svg │ │ │ └── vpn.svg │ │ │ └── xcf │ │ │ ├── vpn-off.xcf │ │ │ ├── vpn-off2.xcf │ │ │ ├── vpn-off3.xcf │ │ │ ├── vpn-off4.xcf │ │ │ ├── vpn-off5.xcf │ │ │ ├── vpn-on.xcf │ │ │ ├── vpn-on2.xcf │ │ │ ├── vpn-on3.xcf │ │ │ ├── vpn-on4.xcf │ │ │ ├── vpn-on5.xcf │ │ │ ├── vpn-wait.xcf │ │ │ ├── vpn-wait5.xcf │ │ │ └── vpnLookOut.xcf │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── vpnLookOut@claudiux.pot │ │ └── zh_TW.po │ │ └── scripts │ │ ├── FileInfo.js │ │ ├── check_dependencies.sh │ │ ├── generate_mo.sh │ │ ├── generate_pot.py │ │ ├── getTZ.sh │ │ ├── reload_ext.sh │ │ ├── some_commands.txt │ │ ├── start_client.sh │ │ ├── start_transmission.sh │ │ ├── stop_client.sh │ │ ├── stop_transmission.sh │ │ ├── vpn_iface_detect.sh │ │ ├── vpn_names.sh │ │ └── vpn_status.sh ├── info.json └── screenshot.png ├── wakapidisplay@babico ├── README.md ├── files │ └── wakapidisplay@babico │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── wakapi-black.svg │ │ └── wakapi-white.svg │ │ ├── lib │ │ └── httpLib.js │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── wakapidisplay@babico.pot │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── wakatimedisplay@inventor96 ├── README.md ├── files │ └── wakatimedisplay@inventor96 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── wakatime-black.svg │ │ └── wakatime-white.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── wakatimedisplay@inventor96.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── wallpaper-slideshow@amaan-mohib ├── README.md ├── files │ └── wallpaper-slideshow@amaan-mohib │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ └── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── wallpaper-slideshow@amaan-mohib.pot │ │ └── zh_TW.po │ │ ├── scripts │ │ └── wallpaper_script.py │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── weather@mockturtl ├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── README.md ├── TASKS.md ├── build.sh ├── build3_0.sh ├── build_guide.md ├── eslint.config.mjs ├── files │ └── weather@mockturtl │ │ ├── 3.0 │ │ ├── applet.js │ │ ├── climacell.js │ │ ├── darkSky.js │ │ ├── icon.png │ │ ├── ipApi.js │ │ ├── met_norway.js │ │ ├── met_uk.js │ │ ├── openWeatherMap.js │ │ ├── promise-polyfill.js │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ ├── sunCalc.js │ │ ├── us_weather.js │ │ ├── utils.js │ │ ├── weatherbit.js │ │ └── yahoo.js │ │ ├── 3.8 │ │ ├── AlertsWindow.py │ │ ├── LogSaver.py │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ ├── stylesheet.css │ │ └── weather-applet.js │ │ ├── arrow-icons │ │ ├── east-arrow-weather-symbolic.svg │ │ ├── licence.txt │ │ ├── north-arrow-weather-symbolic.svg │ │ ├── north-east-arrow-weather-symbolic.svg │ │ ├── north-west-arrow-weather-symbolic.svg │ │ ├── south-arrow-weather-symbolic.svg │ │ ├── south-east-arrow-weather-symbolic.svg │ │ ├── south-west-arrow-weather-symbolic.svg │ │ └── west-arrow-weather-symbolic.svg │ │ ├── icon.png │ │ ├── icons │ │ ├── alien-symbolic.svg │ │ ├── barometer-symbolic.svg │ │ ├── celsius-symbolic.svg │ │ ├── cloud-down-symbolic.svg │ │ ├── cloud-refresh-symbolic.svg │ │ ├── cloud-symbolic.svg │ │ ├── cloud-up-symbolic.svg │ │ ├── cloudy-gusts-symbolic.svg │ │ ├── cloudy-symbolic.svg │ │ ├── cloudy-windy-symbolic.svg │ │ ├── custom-down-arrow-symbolic.svg │ │ ├── custom-left-arrow-symbolic.svg │ │ ├── custom-right-arrow-symbolic.svg │ │ ├── custom-up-arrow-symbolic.svg │ │ ├── day-cloudy-gusts-symbolic.svg │ │ ├── day-cloudy-high-symbolic.svg │ │ ├── day-cloudy-symbolic.svg │ │ ├── day-cloudy-windy-symbolic.svg │ │ ├── day-fog-symbolic.svg │ │ ├── day-hail-symbolic.svg │ │ ├── day-haze-symbolic.svg │ │ ├── day-light-wind-symbolic.svg │ │ ├── day-lightning-symbolic.svg │ │ ├── day-rain-mix-symbolic.svg │ │ ├── day-rain-symbolic.svg │ │ ├── day-rain-wind-symbolic.svg │ │ ├── day-showers-symbolic.svg │ │ ├── day-sleet-storm-symbolic.svg │ │ ├── day-sleet-symbolic.svg │ │ ├── day-snow-symbolic.svg │ │ ├── day-snow-thunderstorm-symbolic.svg │ │ ├── day-snow-wind-symbolic.svg │ │ ├── day-sprinkle-symbolic.svg │ │ ├── day-storm-showers-symbolic.svg │ │ ├── day-sunny-overcast-symbolic.svg │ │ ├── day-sunny-symbolic.svg │ │ ├── day-thunderstorm-symbolic.svg │ │ ├── day-windy-symbolic.svg │ │ ├── degrees-symbolic.svg │ │ ├── direction-down-left-symbolic.svg │ │ ├── direction-down-right-symbolic.svg │ │ ├── direction-down-symbolic.svg │ │ ├── direction-left-symbolic.svg │ │ ├── direction-right-symbolic.svg │ │ ├── direction-up-left-symbolic.svg │ │ ├── direction-up-right-symbolic.svg │ │ ├── direction-up-symbolic.svg │ │ ├── dust-symbolic.svg │ │ ├── earthquake-symbolic.svg │ │ ├── fahrenheit-symbolic.svg │ │ ├── fire-symbolic.svg │ │ ├── flood-symbolic.svg │ │ ├── fog-symbolic.svg │ │ ├── gale-warning-symbolic.svg │ │ ├── hail-symbolic.svg │ │ ├── horizon-alt-symbolic.svg │ │ ├── horizon-symbolic.svg │ │ ├── hot-symbolic.svg │ │ ├── humidity-symbolic.svg │ │ ├── hurricane-symbolic.svg │ │ ├── hurricane-warning-symbolic.svg │ │ ├── licence.txt │ │ ├── lightning-symbolic.svg │ │ ├── lunar-eclipse-symbolic.svg │ │ ├── meteor-symbolic.svg │ │ ├── moon-alt-first-quarter-symbolic.svg │ │ ├── moon-alt-full-symbolic.svg │ │ ├── moon-alt-new-symbolic.svg │ │ ├── moon-alt-third-quarter-symbolic.svg │ │ ├── moon-alt-waning-crescent-1-symbolic.svg │ │ ├── moon-alt-waning-crescent-2-symbolic.svg │ │ ├── moon-alt-waning-crescent-3-symbolic.svg │ │ ├── moon-alt-waning-crescent-4-symbolic.svg │ │ ├── moon-alt-waning-crescent-5-symbolic.svg │ │ ├── moon-alt-waning-crescent-6-symbolic.svg │ │ ├── moon-alt-waning-gibbous-1-symbolic.svg │ │ ├── moon-alt-waning-gibbous-2-symbolic.svg │ │ ├── moon-alt-waning-gibbous-3-symbolic.svg │ │ ├── moon-alt-waning-gibbous-4-symbolic.svg │ │ ├── moon-alt-waning-gibbous-5-symbolic.svg │ │ ├── moon-alt-waning-gibbous-6-symbolic.svg │ │ ├── moon-alt-waxing-crescent-1-symbolic.svg │ │ ├── moon-alt-waxing-crescent-2-symbolic.svg │ │ ├── moon-alt-waxing-crescent-3-symbolic.svg │ │ ├── moon-alt-waxing-crescent-4-symbolic.svg │ │ ├── moon-alt-waxing-crescent-5-symbolic.svg │ │ ├── moon-alt-waxing-crescent-6-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-1-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-2-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-3-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-4-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-5-symbolic.svg │ │ ├── moon-alt-waxing-gibbous-6-symbolic.svg │ │ ├── moon-first-quarter-symbolic.svg │ │ ├── moon-full-symbolic.svg │ │ ├── moon-new-symbolic.svg │ │ ├── moon-third-quarter-symbolic.svg │ │ ├── moon-waning-crescent-1-symbolic.svg │ │ ├── moon-waning-crescent-2-symbolic.svg │ │ ├── moon-waning-crescent-3-symbolic.svg │ │ ├── moon-waning-crescent-4-symbolic.svg │ │ ├── moon-waning-crescent-5-symbolic.svg │ │ ├── moon-waning-crescent-6-symbolic.svg │ │ ├── moon-waning-gibbous-1-symbolic.svg │ │ ├── moon-waning-gibbous-2-symbolic.svg │ │ ├── moon-waning-gibbous-3-symbolic.svg │ │ ├── moon-waning-gibbous-4-symbolic.svg │ │ ├── moon-waning-gibbous-5-symbolic.svg │ │ ├── moon-waning-gibbous-6-symbolic.svg │ │ ├── moon-waxing-crescent-1-symbolic.svg │ │ ├── moon-waxing-crescent-2-symbolic.svg │ │ ├── moon-waxing-crescent-3-symbolic.svg │ │ ├── moon-waxing-crescent-4-symbolic.svg │ │ ├── moon-waxing-crescent-5-symbolic.svg │ │ ├── moon-waxing-crescent-6-symbolic.svg │ │ ├── moon-waxing-gibbous-1-symbolic.svg │ │ ├── moon-waxing-gibbous-2-symbolic.svg │ │ ├── moon-waxing-gibbous-3-symbolic.svg │ │ ├── moon-waxing-gibbous-4-symbolic.svg │ │ ├── moon-waxing-gibbous-5-symbolic.svg │ │ ├── moon-waxing-gibbous-6-symbolic.svg │ │ ├── moonrise-symbolic.svg │ │ ├── moonset-symbolic.svg │ │ ├── na-symbolic.svg │ │ ├── night-alt-cloudy-gusts-symbolic.svg │ │ ├── night-alt-cloudy-high-symbolic.svg │ │ ├── night-alt-cloudy-symbolic.svg │ │ ├── night-alt-cloudy-windy-symbolic.svg │ │ ├── night-alt-hail-symbolic.svg │ │ ├── night-alt-lightning-symbolic.svg │ │ ├── night-alt-partly-cloudy-symbolic.svg │ │ ├── night-alt-rain-mix-symbolic.svg │ │ ├── night-alt-rain-symbolic.svg │ │ ├── night-alt-rain-wind-symbolic.svg │ │ ├── night-alt-showers-symbolic.svg │ │ ├── night-alt-sleet-storm-symbolic.svg │ │ ├── night-alt-sleet-symbolic.svg │ │ ├── night-alt-snow-symbolic.svg │ │ ├── night-alt-snow-thunderstorm-symbolic.svg │ │ ├── night-alt-snow-wind-symbolic.svg │ │ ├── night-alt-sprinkle-symbolic.svg │ │ ├── night-alt-storm-showers-symbolic.svg │ │ ├── night-alt-thunderstorm-symbolic.svg │ │ ├── night-alt-wind-symbolic.svg │ │ ├── night-clear-symbolic.svg │ │ ├── night-cloudy-gusts-symbolic.svg │ │ ├── night-cloudy-high-symbolic.svg │ │ ├── night-cloudy-symbolic.svg │ │ ├── night-cloudy-windy-symbolic.svg │ │ ├── night-fog-symbolic.svg │ │ ├── night-hail-symbolic.svg │ │ ├── night-lightning-symbolic.svg │ │ ├── night-partly-cloudy-symbolic.svg │ │ ├── night-rain-mix-symbolic.svg │ │ ├── night-rain-symbolic.svg │ │ ├── night-rain-wind-symbolic.svg │ │ ├── night-showers-symbolic.svg │ │ ├── night-sleet-storm-symbolic.svg │ │ ├── night-sleet-symbolic.svg │ │ ├── night-snow-symbolic.svg │ │ ├── night-snow-thunderstorm-symbolic.svg │ │ ├── night-snow-wind-symbolic.svg │ │ ├── night-sprinkle-symbolic.svg │ │ ├── night-storm-showers-symbolic.svg │ │ ├── night-thunderstorm-symbolic.svg │ │ ├── rain-mix-symbolic.svg │ │ ├── rain-symbolic.svg │ │ ├── rain-wind-symbolic.svg │ │ ├── raindrop-symbolic.svg │ │ ├── raindrops-symbolic.svg │ │ ├── refresh-alt-symbolic.svg │ │ ├── refresh-symbolic.svg │ │ ├── sandstorm-symbolic.svg │ │ ├── showers-symbolic.svg │ │ ├── sleet-storm-symbolic.svg │ │ ├── sleet-symbolic.svg │ │ ├── small-craft-advisory-symbolic.svg │ │ ├── smog-symbolic.svg │ │ ├── smoke-symbolic.svg │ │ ├── snow-symbolic.svg │ │ ├── snow-wind-symbolic.svg │ │ ├── snowflake-cold-symbolic.svg │ │ ├── solar-eclipse-symbolic.svg │ │ ├── sprinkle-symbolic.svg │ │ ├── stars-symbolic.svg │ │ ├── storm-showers-symbolic.svg │ │ ├── storm-warning-symbolic.svg │ │ ├── strong-wind-symbolic.svg │ │ ├── sunrise-symbolic.svg │ │ ├── sunset-symbolic.svg │ │ ├── thermometer-exterior-symbolic.svg │ │ ├── thermometer-internal-symbolic.svg │ │ ├── thermometer-symbolic.svg │ │ ├── thunderstorm-symbolic.svg │ │ ├── time-1-symbolic.svg │ │ ├── time-10-symbolic.svg │ │ ├── time-11-symbolic.svg │ │ ├── time-12-symbolic.svg │ │ ├── time-2-symbolic.svg │ │ ├── time-3-symbolic.svg │ │ ├── time-4-symbolic.svg │ │ ├── time-5-symbolic.svg │ │ ├── time-6-symbolic.svg │ │ ├── time-7-symbolic.svg │ │ ├── time-8-symbolic.svg │ │ ├── time-9-symbolic.svg │ │ ├── tornado-symbolic.svg │ │ ├── train-symbolic.svg │ │ ├── tsunami-symbolic.svg │ │ ├── umbrella-symbolic.svg │ │ ├── uv-index-symbolic.svg │ │ ├── volcano-symbolic.svg │ │ ├── wind-beaufort-0-symbolic.svg │ │ ├── wind-beaufort-1-symbolic.svg │ │ ├── wind-beaufort-10-symbolic.svg │ │ ├── wind-beaufort-11-symbolic.svg │ │ ├── wind-beaufort-12-symbolic.svg │ │ ├── wind-beaufort-2-symbolic.svg │ │ ├── wind-beaufort-3-symbolic.svg │ │ ├── wind-beaufort-4-symbolic.svg │ │ ├── wind-beaufort-5-symbolic.svg │ │ ├── wind-beaufort-6-symbolic.svg │ │ ├── wind-beaufort-7-symbolic.svg │ │ ├── wind-beaufort-8-symbolic.svg │ │ ├── wind-beaufort-9-symbolic.svg │ │ ├── wind-deg-symbolic.svg │ │ └── windy-symbolic.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ar.po │ │ ├── be.po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── el.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── he.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── id.po │ │ ├── is.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ko.po │ │ ├── lt.po │ │ ├── lv.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sl.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── weather@mockturtl.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json ├── install.sh ├── package.json ├── pyrightconfig.json ├── screenshot.png ├── src │ ├── 3_0 │ │ ├── applet.ts │ │ ├── climacell.ts │ │ ├── darkSky.ts │ │ ├── ipApi.ts │ │ ├── met_norway.ts │ │ ├── met_uk.ts │ │ ├── openWeatherMap.ts │ │ ├── promise-polyfill.js │ │ ├── sunCalc.ts │ │ ├── tsconfig.json │ │ ├── us_weather.ts │ │ ├── utils.ts │ │ ├── weatherbit.ts │ │ └── yahoo.ts │ └── 3_8 │ │ ├── applet.ts │ │ ├── config.ts │ │ ├── consts.ts │ │ ├── lib │ │ ├── commandRunner.ts │ │ ├── events.ts │ │ ├── httpLib.ts │ │ ├── io_lib.ts │ │ ├── notification_service.ts │ │ ├── polygons.ts │ │ ├── services │ │ │ ├── error_handler.ts │ │ │ └── logger.ts │ │ └── soupLib.ts │ │ ├── location_services │ │ ├── geoip_services │ │ │ ├── base.ts │ │ │ ├── geoclue.ts │ │ │ ├── geoip.fedora.ts │ │ │ ├── geoiplookup.io.ts │ │ │ ├── geojs.io.ts │ │ │ └── ipApi.ts │ │ ├── locationstore.ts │ │ ├── nominatim.ts │ │ └── tz_lookup.ts │ │ ├── loop.ts │ │ ├── main.ts │ │ ├── providers │ │ ├── BaseProvider.ts │ │ ├── accuWeather.ts │ │ ├── danishMI.ts │ │ ├── deutscherWetterdienst │ │ │ ├── alert.ts │ │ │ └── provider.ts │ │ ├── met_norway │ │ │ ├── alert.ts │ │ │ ├── provider.ts │ │ │ └── types │ │ │ │ ├── common.ts │ │ │ │ ├── forecast.ts │ │ │ │ └── nowcast.ts │ │ ├── met_uk.ts │ │ ├── open-meteo │ │ │ ├── payload │ │ │ │ ├── common.ts │ │ │ │ ├── current.ts │ │ │ │ ├── daily.ts │ │ │ │ ├── hour.ts │ │ │ │ └── response.ts │ │ │ └── provider.ts │ │ ├── openweathermap │ │ │ ├── payload │ │ │ │ ├── common.ts │ │ │ │ ├── condition.ts │ │ │ │ ├── forecast_daily.ts │ │ │ │ ├── onecall.ts │ │ │ │ └── weather.ts │ │ │ ├── provider-closed.ts │ │ │ └── provider-open.ts │ │ ├── pirate_weather │ │ │ ├── pirateWeather.ts │ │ │ └── types │ │ │ │ ├── alerts.ts │ │ │ │ ├── common.ts │ │ │ │ ├── daily.ts │ │ │ │ ├── hourly.ts │ │ │ │ └── minutely.ts │ │ ├── swiss-meteo │ │ │ ├── payload │ │ │ │ ├── alerts.ts │ │ │ │ ├── common.ts │ │ │ │ ├── current.ts │ │ │ │ └── days.ts │ │ │ └── provider.ts │ │ ├── tomorrow_io │ │ │ ├── alerts.ts │ │ │ └── provider.ts │ │ ├── us_weather │ │ │ ├── alerts.ts │ │ │ └── provider.ts │ │ ├── visualcrossing │ │ │ ├── alerts.ts │ │ │ └── provider.ts │ │ ├── weatherUnderground.ts │ │ └── weatherbit │ │ │ ├── alerts.ts │ │ │ ├── common.ts │ │ │ ├── current.ts │ │ │ ├── daily.ts │ │ │ ├── hourly.ts │ │ │ └── provider.ts │ │ ├── tsconfig.json │ │ ├── types.ts │ │ ├── ui.ts │ │ ├── ui_elements │ │ ├── uiBar.ts │ │ ├── uiCurrentWeather.ts │ │ ├── uiForecasts.ts │ │ ├── uiHourlyForecasts.ts │ │ ├── uiSeparator.ts │ │ ├── uiSunTimes.ts │ │ ├── weatherbutton.ts │ │ └── windBox.ts │ │ ├── utils.ts │ │ └── weather-data.ts ├── test.sh ├── weather@mockturtl.code-workspace └── webpack.config.js ├── web-developer-menu@infiniteshroom ├── files │ └── web-developer-menu@infiniteshroom │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── vi.po │ │ ├── web-developer-menu@infiniteshroom.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── stylesheet.css ├── info.json └── screenshot.png ├── website-notifier@cardsurf ├── README.md ├── files │ └── website-notifier@cardsurf │ │ ├── applet.js │ │ ├── appletConstants.js │ │ ├── appletGui.js │ │ ├── compatibility.js │ │ ├── cssStylization.js │ │ ├── dates.js │ │ ├── icon.png │ │ ├── icons │ │ ├── bubbleBlue.png │ │ └── bubbleDots.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── website-notifier@cardsurf.pot │ │ └── zh_TW.po │ │ ├── scripts │ │ ├── custom.sh │ │ ├── github_applet_commits.sh │ │ └── linuxmint_newbie_questions.sh │ │ ├── settings-schema.json │ │ └── shellUtils.js ├── info.json └── screenshot.png ├── window-list@sangorys ├── README.md ├── files │ └── window-list@sangorys │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icon.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── window-list@sangorys.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ └── settings-schema.json ├── info.json ├── package.json └── screenshot.png ├── window-list@zeripath.sdf-eu.org ├── README.md ├── files │ └── window-list@zeripath.sdf-eu.org │ │ ├── README.md │ │ ├── applet.js │ │ ├── gnome-panel-window-list.png │ │ ├── icon.png │ │ ├── install.sh │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── window-list@zeripath.sdf-eu.org.pot │ │ └── zh_TW.po │ │ ├── screenshot.png │ │ ├── settings-schema.json │ │ └── uninstall.sh ├── info.json └── screenshot.png ├── windowlist@cobinja.de ├── CHANGELOG.md ├── README.md ├── files │ └── windowlist@cobinja.de │ │ ├── 3.2 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 4.0 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 5.4 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── 6.4 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── settings-schema.json │ │ └── stylesheet.css │ │ ├── COPYING │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── bg.po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── windowlist@cobinja.de.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── wine-utils@elblake ├── LICENSE ├── README.md ├── files │ └── wine-utils@elblake │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── selected-prefix.svg │ │ ├── wine-cmd.svg │ │ ├── wine-utils-icon-style1.svg │ │ ├── wine-utils-icon-style1_dark.svg │ │ ├── wine-utils-icon-style2.svg │ │ ├── wine-utils-icon-style2_dark.svg │ │ ├── wine-utils-icon-style3.svg │ │ ├── wine-utils-icon-style3_dark.svg │ │ ├── wine-utils-icon.svg │ │ └── wine-web-link.svg │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── vi.po │ │ ├── wine-utils@elblake.pot │ │ └── zh_TW.po │ │ ├── scripts │ │ ├── admin-programs.list │ │ ├── launchers.list │ │ ├── list-programs.pl │ │ ├── run-command.sh │ │ ├── run-wine-start.sh │ │ ├── run-wine.sh │ │ ├── use-cmd.sh │ │ └── version.sh │ │ └── settings-schema.json ├── info.json └── screenshot.png ├── wireguard@nicoulaj.net ├── files │ └── wireguard@nicoulaj.net │ │ ├── applet.js │ │ ├── icon.png │ │ ├── icons │ │ ├── off.svg │ │ └── on.svg │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── wireguard@nicoulaj.net.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── workspace-grid@hernejj ├── README.md ├── files │ └── workspace-grid@hernejj │ │ ├── 4.2 │ │ ├── BarIndicatorStyle.js │ │ ├── GridStyle.js │ │ ├── WorkspaceController.js │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── 5.4 │ │ ├── BarIndicatorStyle.js │ │ ├── GridStyle.js │ │ ├── WorkspaceController.js │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── 5.6 │ │ ├── BarIndicatorStyle.js │ │ ├── GridStyle.js │ │ ├── WorkspaceController.js │ │ ├── applet.js │ │ └── settings-schema.json │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── workspace-grid@hernejj.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── workspace-name@willurd ├── files │ └── workspace-name@willurd │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ └── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── workspace-name@willurd.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po ├── info.json └── screenshot.png ├── xampp-panel@backids99 ├── files │ └── xampp-panel@backids99 │ │ ├── applet.js │ │ ├── icon.png │ │ ├── metadata.json │ │ ├── po │ │ ├── ca.po │ │ ├── da.po │ │ ├── de.po │ │ ├── es.po │ │ ├── fr.po │ │ ├── hu.po │ │ ├── it.po │ │ ├── nl.po │ │ ├── pl.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── vi.po │ │ ├── xampp-panel@backids99.pot │ │ ├── zh_CN.po │ │ └── zh_TW.po │ │ ├── stylesheet.css │ │ └── xamp_manager_wrap.sh ├── info.json └── screenshot.png └── xsession@claudiux ├── CHANGELOG.md ├── README.md ├── files └── xsession@claudiux │ ├── CHANGELOG.md │ ├── README.md │ ├── applet.js │ ├── icon.png │ ├── icon.svg │ ├── icons │ ├── applets-symbolic.svg │ ├── desklets-symbolic.svg │ ├── extensions-symbolic.svg │ ├── face-glasses-symbolic.svg │ ├── face-glasses.png │ ├── restart-symbolic.svg │ └── themes-symbolic.svg │ ├── lib │ ├── mainloopTools.js │ └── to-string.js │ ├── metadata.json │ ├── po │ ├── ca.po │ ├── da.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── hu.po │ ├── it.po │ ├── makepot │ ├── nl.po │ ├── tr.po │ ├── vi.po │ ├── xsession@claudiux.pot │ ├── zh_CN.po │ └── zh_TW.po │ ├── scripts │ ├── watch-xse-latest.sh │ └── watch-xse.sh │ └── settings-schema.json ├── icon.svg ├── info.json └── screenshot.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/LICENSES/AGPL-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/AGPL-3.0 -------------------------------------------------------------------------------- /.github/LICENSES/Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/Apache-2.0 -------------------------------------------------------------------------------- /.github/LICENSES/CC0-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/CC0-1.0 -------------------------------------------------------------------------------- /.github/LICENSES/GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/GPL-2.0 -------------------------------------------------------------------------------- /.github/LICENSES/GPL-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/GPL-3.0 -------------------------------------------------------------------------------- /.github/LICENSES/LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/LGPL-2.1 -------------------------------------------------------------------------------- /.github/LICENSES/LGPL-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/LGPL-3.0 -------------------------------------------------------------------------------- /.github/LICENSES/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/MIT -------------------------------------------------------------------------------- /.github/LICENSES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/LICENSES/README.md -------------------------------------------------------------------------------- /.github/bug_report_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/bug_report_creator.py -------------------------------------------------------------------------------- /.github/codeowners_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/codeowners_creator.py -------------------------------------------------------------------------------- /.github/feature_request_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/feature_request_creator.py -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/tst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.github/workflows/tst.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.gitignore -------------------------------------------------------------------------------- /.translation-tables/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.translation-tables/LINGUAS -------------------------------------------------------------------------------- /.translation-tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.translation-tables/README.md -------------------------------------------------------------------------------- /.typescript-declarations/Atk-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/Atk-1.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/Cvc-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/Cvc-1.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/Gdk-3.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/Gdk-3.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/Gio-2.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/Gio-2.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/Gst-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/Gst-1.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/Gtk-3.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/Gtk-3.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/README.md -------------------------------------------------------------------------------- /.typescript-declarations/St-1.0.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/.typescript-declarations/St-1.0.d.ts -------------------------------------------------------------------------------- /.typescript-declarations/cinnamon/ui/environment.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace imports.ui.environment { 2 | 3 | } -------------------------------------------------------------------------------- /.typescript-declarations/cinnamon/ui/overrides.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace imports.ui.overrides { 2 | 3 | } -------------------------------------------------------------------------------- /AlwaysOn@krivetochka/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Krivetochka" 3 | } 4 | -------------------------------------------------------------------------------- /AlwaysOn@krivetochka/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/AlwaysOn@krivetochka/screenshot.png -------------------------------------------------------------------------------- /AutostartPrograms@spacy01/info.json: -------------------------------------------------------------------------------- 1 | {"author": "spacy01"} -------------------------------------------------------------------------------- /BgRadio@spacy01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/BgRadio@spacy01/README.md -------------------------------------------------------------------------------- /BgRadio@spacy01/files/BgRadio@spacy01/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | osc=no 2 | -------------------------------------------------------------------------------- /BgRadio@spacy01/info.json: -------------------------------------------------------------------------------- 1 | {"author": "spacy01"} 2 | -------------------------------------------------------------------------------- /BgRadio@spacy01/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/BgRadio@spacy01/screenshot.png -------------------------------------------------------------------------------- /Bps@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/Bps@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /Bps@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/Bps@claudiux/README.md -------------------------------------------------------------------------------- /Bps@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Bps@claudiux/info.json -------------------------------------------------------------------------------- /Bps@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Bps@claudiux/screenshot.png -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/COPYING -------------------------------------------------------------------------------- /CassiaWindowList@klangman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CassiaWindowList@klangman/README.md -------------------------------------------------------------------------------- /CassiaWindowList@klangman/files/CassiaWindowList@klangman/6.0/applet.js: -------------------------------------------------------------------------------- 1 | ../4.0/applet.js -------------------------------------------------------------------------------- /CassiaWindowList@klangman/files/CassiaWindowList@klangman/6.0/stylesheet.css: -------------------------------------------------------------------------------- 1 | ../4.0/stylesheet.css -------------------------------------------------------------------------------- /CassiaWindowList@klangman/files/CassiaWindowList@klangman/6.4/settings-schema.json: -------------------------------------------------------------------------------- 1 | ../6.0/settings-schema.json -------------------------------------------------------------------------------- /CassiaWindowList@klangman/files/CassiaWindowList@klangman/6.4/stylesheet.css: -------------------------------------------------------------------------------- 1 | ../4.0/stylesheet.css -------------------------------------------------------------------------------- /CassiaWindowList@klangman/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CassiaWindowList@klangman/info.json -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CinnVIIStarkMenu@NikoKrause/README.md -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/2.6/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/3.2/stylesheet.css: -------------------------------------------------------------------------------- 1 | ../2.6/stylesheet.css -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/3.4/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/3.4/stylesheet.css: -------------------------------------------------------------------------------- 1 | ../2.6/stylesheet.css -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/4.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/files/CinnVIIStarkMenu@NikoKrause/4.2/stylesheet.css: -------------------------------------------------------------------------------- 1 | ../2.6/stylesheet.css -------------------------------------------------------------------------------- /CinnVIIStarkMenu@NikoKrause/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CinnVIIStarkMenu@NikoKrause/info.json -------------------------------------------------------------------------------- /CinnaMame@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/CinnaMame@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /CinnaMame@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/CinnaMame@claudiux/README.md -------------------------------------------------------------------------------- /CinnaMame@claudiux/files/CinnaMame@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### v1.0.0~20250627 2 | * Fully functional. -------------------------------------------------------------------------------- /CinnaMame@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CinnaMame@claudiux/info.json -------------------------------------------------------------------------------- /CinnaMame@claudiux/screenshot.png: -------------------------------------------------------------------------------- 1 | files/CinnaMame@claudiux/screenshot.png -------------------------------------------------------------------------------- /Cinnamenu@json/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Cinnamenu@json/COPYING -------------------------------------------------------------------------------- /Cinnamenu@json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Cinnamenu@json/README.md -------------------------------------------------------------------------------- /Cinnamenu@json/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Cinnamenu@json/changelog.md -------------------------------------------------------------------------------- /Cinnamenu@json/files/Cinnamenu@json/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /Cinnamenu@json/files/Cinnamenu@json/4.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /Cinnamenu@json/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Cinnamenu@json/info.json -------------------------------------------------------------------------------- /Cinnamenu@json/locale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Cinnamenu@json/locale.sh -------------------------------------------------------------------------------- /Cinnamenu@json/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Cinnamenu@json/screenshot.png -------------------------------------------------------------------------------- /CommandRunner@appdevsw/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CommandRunner@appdevsw/info.json -------------------------------------------------------------------------------- /CommandRunner@appdevsw/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CommandRunner@appdevsw/screenshot.png -------------------------------------------------------------------------------- /CustomApplicationsMenu@LLOBERA/README.md: -------------------------------------------------------------------------------- 1 | files/CustomApplicationsMenu@LLOBERA/README.md -------------------------------------------------------------------------------- /CustomPlaces@Nicolas01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CustomPlaces@Nicolas01/README.md -------------------------------------------------------------------------------- /CustomPlaces@Nicolas01/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Nicolas01" 3 | } 4 | -------------------------------------------------------------------------------- /CustomPlaces@Nicolas01/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/CustomPlaces@Nicolas01/screenshot.png -------------------------------------------------------------------------------- /Direct@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/Direct@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /Direct@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/Direct@claudiux/README.md -------------------------------------------------------------------------------- /Direct@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Direct@claudiux/info.json -------------------------------------------------------------------------------- /Direct@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Direct@claudiux/screenshot.png -------------------------------------------------------------------------------- /Exit@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/Exit@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /Exit@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/Exit@claudiux/README.md -------------------------------------------------------------------------------- /Exit@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Exit@claudiux/info.json -------------------------------------------------------------------------------- /Exit@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Exit@claudiux/screenshot.png -------------------------------------------------------------------------------- /Gears@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/Gears@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /Gears@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/Gears@claudiux/README.md -------------------------------------------------------------------------------- /Gears@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Gears@claudiux/info.json -------------------------------------------------------------------------------- /Gears@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Gears@claudiux/screenshot.png -------------------------------------------------------------------------------- /IntelTurboBoost@wsmenezes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/IntelTurboBoost@wsmenezes/README.md -------------------------------------------------------------------------------- /IntelTurboBoost@wsmenezes/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/IntelTurboBoost@wsmenezes/info.json -------------------------------------------------------------------------------- /InternetTimeApplet@stefan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/InternetTimeApplet@stefan/README.md -------------------------------------------------------------------------------- /InternetTimeApplet@stefan/info.json: -------------------------------------------------------------------------------- 1 | {"author": "stefan12O"} 2 | -------------------------------------------------------------------------------- /MessagingMenuV3@blub/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/MessagingMenuV3@blub/info.json -------------------------------------------------------------------------------- /MessagingMenuV3@blub/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/MessagingMenuV3@blub/screenshot.png -------------------------------------------------------------------------------- /Mint-Unsplash-Background@omidmaldar/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "omidmaldar" 3 | } -------------------------------------------------------------------------------- /MonitorInputSource@klangman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/MonitorInputSource@klangman/README.md -------------------------------------------------------------------------------- /MonitorInputSource@klangman/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/MonitorInputSource@klangman/info.json -------------------------------------------------------------------------------- /MuteToggler@jebeaudet.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/MuteToggler@jebeaudet.com/README.md -------------------------------------------------------------------------------- /MuteToggler@jebeaudet.com/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "jebeaudet" 3 | } -------------------------------------------------------------------------------- /NightLightSwitch@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/NightLightSwitch@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /NightLightSwitch@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/NightLightSwitch@claudiux/README.md -------------------------------------------------------------------------------- /NightLightSwitch@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/NightLightSwitch@claudiux/info.json -------------------------------------------------------------------------------- /PDFManager@cinnamon.org/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/PDFManager@cinnamon.org/info.json -------------------------------------------------------------------------------- /PanelTranslator@klangman/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/PanelTranslator@klangman/CHANGELOG.md -------------------------------------------------------------------------------- /PanelTranslator@klangman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/PanelTranslator@klangman/README.md -------------------------------------------------------------------------------- /PanelTranslator@klangman/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/PanelTranslator@klangman/info.json -------------------------------------------------------------------------------- /ProcessMemoryMonitor@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/ProcessMemoryMonitor@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /ProcessMemoryMonitor@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/ProcessMemoryMonitor@claudiux/README.md -------------------------------------------------------------------------------- /ProcessMemoryMonitor@claudiux/screenshot.png: -------------------------------------------------------------------------------- 1 | files/ProcessMemoryMonitor@claudiux/screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/README.md -------------------------------------------------------------------------------- /Radio3.0@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/Radio3.0@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /Radio3.0@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/Radio3.0@claudiux/README.md -------------------------------------------------------------------------------- /Radio3.0@claudiux/files/Radio3.0@claudiux/lib/radioSearch.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Radio3.0@claudiux/files/Radio3.0@claudiux/lib/xml2json-AUTHORS: -------------------------------------------------------------------------------- 1 | ENKIDOO.AI - info@enkidoo.ai -------------------------------------------------------------------------------- /Radio3.0@claudiux/files/Radio3.0@claudiux/radiodb/tag-replace.csv: -------------------------------------------------------------------------------- 1 | from;to 2 | -------------------------------------------------------------------------------- /Radio3.0@claudiux/files/Radio3.0@claudiux/stations/EMPTY_LIST.csv: -------------------------------------------------------------------------------- 1 | INC;NAME;URL -------------------------------------------------------------------------------- /Radio3.0@claudiux/files/Radio3.0@claudiux/xs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Radio3.0@claudiux/files/Radio3.0@claudiux/xs/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Radio3.0@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Radio3.0@claudiux/info.json -------------------------------------------------------------------------------- /Radio3.0@claudiux/screenshot.png: -------------------------------------------------------------------------------- 1 | files/Radio3.0@claudiux/screenshot.png -------------------------------------------------------------------------------- /SW++@mohammad-sn/info.json: -------------------------------------------------------------------------------- 1 | {"author": "mohammad-sn"} -------------------------------------------------------------------------------- /SW++@mohammad-sn/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/SW++@mohammad-sn/screenshot.png -------------------------------------------------------------------------------- /ScreenLocker@tuuxx/info.json: -------------------------------------------------------------------------------- 1 | {"author": "tuuxx"} -------------------------------------------------------------------------------- /ScreenLocker@tuuxx/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ScreenLocker@tuuxx/screenshot.png -------------------------------------------------------------------------------- /ScreenShot@tech71/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ScreenShot@tech71/info.json -------------------------------------------------------------------------------- /ScreenShot@tech71/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ScreenShot@tech71/screenshot.png -------------------------------------------------------------------------------- /Sensors@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/Sensors@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /Sensors@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/Sensors@claudiux/README.md -------------------------------------------------------------------------------- /Sensors@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Sensors@claudiux/info.json -------------------------------------------------------------------------------- /Sensors@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/Sensors@claudiux/screenshot.png -------------------------------------------------------------------------------- /SettingsPlus@lusito.info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/SettingsPlus@lusito.info/info.json -------------------------------------------------------------------------------- /ShellTools@abgoyal/info.json: -------------------------------------------------------------------------------- 1 | {"author": "jaszhix"} -------------------------------------------------------------------------------- /ShellTools@abgoyal/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ShellTools@abgoyal/screenshot.png -------------------------------------------------------------------------------- /ShutdownApplet@DeathMD/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ShutdownApplet@DeathMD/info.json -------------------------------------------------------------------------------- /ShutdownApplet@DeathMD/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ShutdownApplet@DeathMD/screenshot.png -------------------------------------------------------------------------------- /SpiceSpy@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/SpiceSpy@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /SpiceSpy@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/SpiceSpy@claudiux/README.md -------------------------------------------------------------------------------- /SpiceSpy@claudiux/files/SpiceSpy@claudiux/icon.png: -------------------------------------------------------------------------------- 1 | icons/cinnamon.png -------------------------------------------------------------------------------- /SpiceSpy@claudiux/files/SpiceSpy@claudiux/scripts/commands.txt: -------------------------------------------------------------------------------- 1 | cat Sensors.html | grep -E -e "[0-9]+ Open" -m1 | awk '{print$1}' 2 | -------------------------------------------------------------------------------- /SpiceSpy@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/SpiceSpy@claudiux/info.json -------------------------------------------------------------------------------- /SpiceSpy@claudiux/screenshot.png: -------------------------------------------------------------------------------- 1 | files/SpiceSpy@claudiux/screenshot.png -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/SpicesUpdate@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/SpicesUpdate@claudiux/README.md -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/2.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/4.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/4.6/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/3.8/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/4.0/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/4.2/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/4.4/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/4.6/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/6.0_FUTURE/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/files/SpicesUpdate@claudiux/cs/latest: -------------------------------------------------------------------------------- 1 | 4.6 -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/SpicesUpdate@claudiux/info.json -------------------------------------------------------------------------------- /SpicesUpdate@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/SpicesUpdate@claudiux/screenshot.png -------------------------------------------------------------------------------- /ThemeRefresh@JosephM/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ThemeRefresh@JosephM/info.json -------------------------------------------------------------------------------- /ThemeRefresh@JosephM/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ThemeRefresh@JosephM/screenshot.png -------------------------------------------------------------------------------- /VPN-Sentinel@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/VPN-Sentinel@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /VPN-Sentinel@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/VPN-Sentinel@claudiux/README.md -------------------------------------------------------------------------------- /VPN-Sentinel@claudiux/files/VPN-Sentinel@claudiux/sounds/commands.txt: -------------------------------------------------------------------------------- 1 | ffplay -loglevel 0 -nodisp -autoexit -i vpn-dropped.oga 2 | -------------------------------------------------------------------------------- /VPN-Sentinel@claudiux/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "claudiux" 3 | } 4 | -------------------------------------------------------------------------------- /VPN-Sentinel@claudiux/screenshot.png: -------------------------------------------------------------------------------- 1 | files/VPN-Sentinel@claudiux/screenshot.png -------------------------------------------------------------------------------- /anime-wallpaper@flyflyan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/anime-wallpaper@flyflyan/LICENSE -------------------------------------------------------------------------------- /anime-wallpaper@flyflyan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/anime-wallpaper@flyflyan/README.md -------------------------------------------------------------------------------- /anime-wallpaper@flyflyan/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "fly206" 3 | } 4 | -------------------------------------------------------------------------------- /any-alarm@sophie-la-li/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/any-alarm@sophie-la-li/README.md -------------------------------------------------------------------------------- /any-alarm@sophie-la-li/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "sophie-la-li" 3 | } 4 | -------------------------------------------------------------------------------- /any-alarm@sophie-la-li/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/any-alarm@sophie-la-li/screenshot.png -------------------------------------------------------------------------------- /app-launcher@mchilli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/app-launcher@mchilli/README.md -------------------------------------------------------------------------------- /app-launcher@mchilli/info.json: -------------------------------------------------------------------------------- 1 | {"author": "mchilli"} 2 | -------------------------------------------------------------------------------- /app-launcher@mchilli/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/app-launcher@mchilli/screenshot.png -------------------------------------------------------------------------------- /asl@santiago/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/asl@santiago/README.md -------------------------------------------------------------------------------- /asl@santiago/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "SamBurgos" 3 | } 4 | -------------------------------------------------------------------------------- /asl@santiago/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/asl@santiago/screenshot.png -------------------------------------------------------------------------------- /auto-dark-light@gihaume/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/auto-dark-light@gihaume/CHANGELOG.md -------------------------------------------------------------------------------- /auto-dark-light@gihaume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/auto-dark-light@gihaume/README.md -------------------------------------------------------------------------------- /auto-dark-light@gihaume/files/auto-dark-light@gihaume/5.8/globals.d.ts: -------------------------------------------------------------------------------- 1 | declare var imports: any; 2 | -------------------------------------------------------------------------------- /auto-dark-light@gihaume/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/auto-dark-light@gihaume/info.json -------------------------------------------------------------------------------- /azan@fahri.nurul.id/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/azan@fahri.nurul.id/LICENSE -------------------------------------------------------------------------------- /azan@fahri.nurul.id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/azan@fahri.nurul.id/README.md -------------------------------------------------------------------------------- /azan@fahri.nurul.id/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/azan@fahri.nurul.id/info.json -------------------------------------------------------------------------------- /azan@fahri.nurul.id/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/azan@fahri.nurul.id/screenshot.png -------------------------------------------------------------------------------- /backgroundroll@Sokawaii25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/backgroundroll@Sokawaii25/README.md -------------------------------------------------------------------------------- /backgroundroll@Sokawaii25/files/backgroundroll@Sokawaii25/icons/icon.svg: -------------------------------------------------------------------------------- 1 | ../icon.svg -------------------------------------------------------------------------------- /backgroundroll@Sokawaii25/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Sokawaii25" 3 | } 4 | -------------------------------------------------------------------------------- /bash-sensors@pkkk/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bash-sensors@pkkk/info.json -------------------------------------------------------------------------------- /bash-sensors@pkkk/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bash-sensors@pkkk/screenshot.png -------------------------------------------------------------------------------- /batterymonitor@pdcurtis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/batterymonitor@pdcurtis/CHANGELOG.md -------------------------------------------------------------------------------- /batterymonitor@pdcurtis/README.md: -------------------------------------------------------------------------------- 1 | files/batterymonitor@pdcurtis/README.md -------------------------------------------------------------------------------- /batterymonitor@pdcurtis/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "pdcurtis" 3 | } 4 | -------------------------------------------------------------------------------- /batterypower@joka42/.gitignore: -------------------------------------------------------------------------------- 1 | .energyrate 2 | .batterystate -------------------------------------------------------------------------------- /batterypower@joka42/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/batterypower@joka42/LICENSE.md -------------------------------------------------------------------------------- /batterypower@joka42/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "joka42" 3 | } 4 | -------------------------------------------------------------------------------- /batterypower@joka42/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/batterypower@joka42/screenshot.png -------------------------------------------------------------------------------- /better-backgrounds@simonmicro/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/better-backgrounds@simonmicro/AUTHORS -------------------------------------------------------------------------------- /betterlock/files/betterlock/applet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/applet.js -------------------------------------------------------------------------------- /betterlock/files/betterlock/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/icon.png -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/ca.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/da.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/de.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/es.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/fi.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/fr.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/he.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/hr.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/hu.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/it.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/ja.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/nl.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/ru.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/sv.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/tr.po -------------------------------------------------------------------------------- /betterlock/files/betterlock/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/files/betterlock/po/vi.po -------------------------------------------------------------------------------- /betterlock/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/info.json -------------------------------------------------------------------------------- /betterlock/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/betterlock/screenshot.png -------------------------------------------------------------------------------- /bettersettings@bownz/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bettersettings@bownz/info.json -------------------------------------------------------------------------------- /bettersettings@bownz/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bettersettings@bownz/screenshot.png -------------------------------------------------------------------------------- /bible@nodeengineer.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bible@nodeengineer.com/README.md -------------------------------------------------------------------------------- /bible@nodeengineer.com/info.json: -------------------------------------------------------------------------------- 1 | { "author": "nodeengineer" } 2 | -------------------------------------------------------------------------------- /bible@nodeengineer.com/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bible@nodeengineer.com/screenshot.png -------------------------------------------------------------------------------- /binaryclock@entelechy/files/binaryclock@entelechy/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /binaryclock@entelechy/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/binaryclock@entelechy/info.json -------------------------------------------------------------------------------- /binaryclock@entelechy/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/binaryclock@entelechy/screenshot.png -------------------------------------------------------------------------------- /bing-wallpaper@starcross.dev/info.json: -------------------------------------------------------------------------------- 1 | {"author": "Starcross"} 2 | -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bluetooth-battery@zamszowy/LICENSE -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bluetooth-battery@zamszowy/README.md -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-000-dark.svg: -------------------------------------------------------------------------------- 1 | battery-000-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-010-dark.svg: -------------------------------------------------------------------------------- 1 | battery-010-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-020-dark.svg: -------------------------------------------------------------------------------- 1 | battery-020-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-030-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-030-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-040-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-040-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-050-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-050-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-060-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-060-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-070-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-070-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-080-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-080-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-090-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-090-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/battery-100-symbolic.svg: -------------------------------------------------------------------------------- 1 | battery-100-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-030-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-030-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-040-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-040-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-050-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-050-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-060-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-060-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-070-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-070-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-080-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-080-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-090-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-090-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/headphones-100-symbolic.svg: -------------------------------------------------------------------------------- 1 | headphones-100-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-030-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-030-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-040-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-040-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-050-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-050-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-060-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-060-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-070-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-070-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-080-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-080-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-090-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-090-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/keyboard-100-symbolic.svg: -------------------------------------------------------------------------------- 1 | keyboard-100-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-030-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-030-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-040-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-040-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-050-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-050-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-060-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-060-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-070-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-070-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-080-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-080-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-090-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-090-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/files/bluetooth-battery@zamszowy/icons/mouse-100-symbolic.svg: -------------------------------------------------------------------------------- 1 | mouse-100-light.svg -------------------------------------------------------------------------------- /bluetooth-battery@zamszowy/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "zamszowy" 3 | } 4 | -------------------------------------------------------------------------------- /bose@tuuxx/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/Readme.md -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/applet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/applet.js -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/icon.png -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/ca.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/de.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/es.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/fi.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/fr.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/hu.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/it.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/nl.po -------------------------------------------------------------------------------- /bose@tuuxx/files/bose@tuuxx/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/files/bose@tuuxx/po/vi.po -------------------------------------------------------------------------------- /bose@tuuxx/info.json: -------------------------------------------------------------------------------- 1 | {"author": "tuuxx"} 2 | -------------------------------------------------------------------------------- /bose@tuuxx/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bose@tuuxx/screenshot.png -------------------------------------------------------------------------------- /brightness-and-gamma-applet@cardsurf/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/brightness-and-gamma-applet@cardsurf/CHANGELOG.md -------------------------------------------------------------------------------- /brightness-and-gamma-applet@cardsurf/README.md: -------------------------------------------------------------------------------- 1 | files/brightness-and-gamma-applet@cardsurf/README.md -------------------------------------------------------------------------------- /brightness-and-gamma-applet@cardsurf/files/brightness-and-gamma-applet@cardsurf/icons: -------------------------------------------------------------------------------- 1 | 6.4/icons -------------------------------------------------------------------------------- /bumblebee@pdcurtis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/bumblebee@pdcurtis/CHANGELOG.md -------------------------------------------------------------------------------- /bumblebee@pdcurtis/README.md: -------------------------------------------------------------------------------- 1 | files/bumblebee@pdcurtis/README.md -------------------------------------------------------------------------------- /bumblebee@pdcurtis/info.json: -------------------------------------------------------------------------------- 1 | {"author": "pdcurtis"} -------------------------------------------------------------------------------- /bumblebee@pdcurtis/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/bumblebee@pdcurtis/screenshot.png -------------------------------------------------------------------------------- /c-eyes@anaximeno/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/c-eyes@anaximeno/.gitignore -------------------------------------------------------------------------------- /c-eyes@anaximeno/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/c-eyes@anaximeno/LICENSE -------------------------------------------------------------------------------- /c-eyes@anaximeno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/c-eyes@anaximeno/README.md -------------------------------------------------------------------------------- /c-eyes@anaximeno/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/c-eyes@anaximeno/info.json -------------------------------------------------------------------------------- /c-eyes@anaximeno/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/c-eyes@anaximeno/screenshot.png -------------------------------------------------------------------------------- /calc-js@ptandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calc-js@ptandler/README.md -------------------------------------------------------------------------------- /calc-js@ptandler/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calc-js@ptandler/info.json -------------------------------------------------------------------------------- /calc-js@ptandler/reload-applet.gjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calc-js@ptandler/reload-applet.gjs -------------------------------------------------------------------------------- /calc-js@ptandler/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calc-js@ptandler/screenshot.png -------------------------------------------------------------------------------- /calendar@ccprog/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calendar@ccprog/CHANGELOG.md -------------------------------------------------------------------------------- /calendar@ccprog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calendar@ccprog/README.md -------------------------------------------------------------------------------- /calendar@ccprog/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calendar@ccprog/calendar.png -------------------------------------------------------------------------------- /calendar@ccprog/files/calendar@ccprog/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /calendar@ccprog/files/calendar@ccprog/5.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /calendar@ccprog/info.json: -------------------------------------------------------------------------------- 1 | {"author": "ccprog"} -------------------------------------------------------------------------------- /calendar@ccprog/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/calendar@ccprog/screenshot.png -------------------------------------------------------------------------------- /calendar@simonwiles.net/info.json: -------------------------------------------------------------------------------- 1 | {"author": "simonwiles"} 2 | -------------------------------------------------------------------------------- /cheaty@centurix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cheaty@centurix/README.md -------------------------------------------------------------------------------- /cheaty@centurix/info.json: -------------------------------------------------------------------------------- 1 | {"author": "centurix"} -------------------------------------------------------------------------------- /cheaty@centurix/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cheaty@centurix/screenshot.png -------------------------------------------------------------------------------- /cinnamon-spices-makepot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cinnamon-spices-makepot -------------------------------------------------------------------------------- /cinnamon-timer@jake1164/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cinnamon-timer@jake1164/README.md -------------------------------------------------------------------------------- /cinnamon-timer@jake1164/files/cinnamon-timer@jake1164/2.6/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /cinnamon-timer@jake1164/files/cinnamon-timer@jake1164/3.4/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /cinnamon-timer@jake1164/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cinnamon-timer@jake1164/info.json -------------------------------------------------------------------------------- /cinnamonvantage@garlayntoji/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cinnamonvantage@garlayntoji/COPYING -------------------------------------------------------------------------------- /cinnamonvantage@garlayntoji/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cinnamonvantage@garlayntoji/README.md -------------------------------------------------------------------------------- /cinnamonvantage@garlayntoji/info.json: -------------------------------------------------------------------------------- 1 | {"author": "Garlayntoji"} -------------------------------------------------------------------------------- /clean-show-desktop@filipetorresbr/info.json: -------------------------------------------------------------------------------- 1 | {"author": "FilipeTorresBR"} -------------------------------------------------------------------------------- /click-clock@wernerstucky/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "wernerstucky" 3 | } 4 | -------------------------------------------------------------------------------- /clipboard-eraser@Techcrafter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/clipboard-eraser@Techcrafter/LICENSE -------------------------------------------------------------------------------- /clipboard-qr@wrouesnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/clipboard-qr@wrouesnel/README.md -------------------------------------------------------------------------------- /clipboard-qr@wrouesnel/info.json: -------------------------------------------------------------------------------- 1 | {"author": "wrouesnel"} -------------------------------------------------------------------------------- /clipboard-qr@wrouesnel/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/clipboard-qr@wrouesnel/screenshot.png -------------------------------------------------------------------------------- /collapsible-systray@feuerfuchs.eu/files/collapsible-systray@feuerfuchs.eu/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /collapsible-systray@feuerfuchs.eu/files/collapsible-systray@feuerfuchs.eu/4.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /collapsible-systray@feuerfuchs.eu/info.json: -------------------------------------------------------------------------------- 1 | {"author": "feuerfuchs"} 2 | -------------------------------------------------------------------------------- /color-blind-filters@rcalixte/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "rcalixte" 3 | } 4 | -------------------------------------------------------------------------------- /color-picker@fmete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/color-picker@fmete/README.md -------------------------------------------------------------------------------- /color-picker@fmete/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/color-picker@fmete/info.json -------------------------------------------------------------------------------- /color-picker@fmete/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/color-picker@fmete/screenshot.png -------------------------------------------------------------------------------- /commandLauncher@scollins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/commandLauncher@scollins/README.md -------------------------------------------------------------------------------- /commandLauncher@scollins/info.json: -------------------------------------------------------------------------------- 1 | {"author": "collinss"} 2 | -------------------------------------------------------------------------------- /computer@brownsr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/computer@brownsr/README.md -------------------------------------------------------------------------------- /computer@brownsr/info.json: -------------------------------------------------------------------------------- 1 | {"author": "brownsr"} -------------------------------------------------------------------------------- /computer@brownsr/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/computer@brownsr/screenshot.png -------------------------------------------------------------------------------- /cpu-monitor-text@gnemonix/info.json: -------------------------------------------------------------------------------- 1 | {"author": "gnemonix"} -------------------------------------------------------------------------------- /cpufreq@mtwebster/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cpufreq@mtwebster/info.json -------------------------------------------------------------------------------- /cpufreq@mtwebster/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cpufreq@mtwebster/screenshot.png -------------------------------------------------------------------------------- /cryptocoin@guantanamoe/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cryptocoin@guantanamoe/CHANGELOG -------------------------------------------------------------------------------- /cryptocoin@guantanamoe/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cryptocoin@guantanamoe/LICENSE.md -------------------------------------------------------------------------------- /cryptocoin@guantanamoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cryptocoin@guantanamoe/README.md -------------------------------------------------------------------------------- /cryptocoin@guantanamoe/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cryptocoin@guantanamoe/info.json -------------------------------------------------------------------------------- /cryptocoin@guantanamoe/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/cryptocoin@guantanamoe/screenshot.png -------------------------------------------------------------------------------- /ctrl4docker@hoffis-eck.de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ctrl4docker@hoffis-eck.de/README.md -------------------------------------------------------------------------------- /ctrl4docker@hoffis-eck.de/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ctrl4docker@hoffis-eck.de/info.json -------------------------------------------------------------------------------- /darkMode@linuxedo.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/darkMode@linuxedo.com/README.md -------------------------------------------------------------------------------- /darkMode@linuxedo.com/info.json: -------------------------------------------------------------------------------- 1 | {"author": "slgobinath"} 2 | -------------------------------------------------------------------------------- /darkMode@linuxedo.com/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/darkMode@linuxedo.com/screenshot.png -------------------------------------------------------------------------------- /ddcci-monitor-control@andr35/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ddcci-monitor-control@andr35/LICENSE -------------------------------------------------------------------------------- /ddcci-monitor-control@andr35/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "andr35" 3 | } -------------------------------------------------------------------------------- /ddcci-multi-monitor@tim-we/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/ddcci-multi-monitor@tim-we/CHANGELOG.md -------------------------------------------------------------------------------- /ddcci-multi-monitor@tim-we/README.md: -------------------------------------------------------------------------------- 1 | files/ddcci-multi-monitor@tim-we/README.md -------------------------------------------------------------------------------- /ddcci-multi-monitor@tim-we/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ddcci-multi-monitor@tim-we/info.json -------------------------------------------------------------------------------- /desaturate-all@hkoosha/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/desaturate-all@hkoosha/CHANGELOG.md -------------------------------------------------------------------------------- /desaturate-all@hkoosha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/desaturate-all@hkoosha/README.md -------------------------------------------------------------------------------- /desaturate-all@hkoosha/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/desaturate-all@hkoosha/info.json -------------------------------------------------------------------------------- /desaturate-all@hkoosha/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/desaturate-all@hkoosha/screenshot.png -------------------------------------------------------------------------------- /devbar@ludvigbostrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/devbar@ludvigbostrom/README.md -------------------------------------------------------------------------------- /devbar@ludvigbostrom/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "ludvigbostrom" 3 | } -------------------------------------------------------------------------------- /devbar@ludvigbostrom/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/devbar@ludvigbostrom/screenshot.png -------------------------------------------------------------------------------- /devutils@fogl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/devutils@fogl/LICENSE -------------------------------------------------------------------------------- /devutils@fogl/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/devutils@fogl/info.json -------------------------------------------------------------------------------- /devutils@fogl/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/devutils@fogl/screenshot.png -------------------------------------------------------------------------------- /dgs-bpivaty@gmail.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/dgs-bpivaty@gmail.com/README.md -------------------------------------------------------------------------------- /dgs-bpivaty@gmail.com/files/dgs-bpivaty@gmail.com/stylesheet.css: -------------------------------------------------------------------------------- 1 | .display-subtitle { 2 | font-weight: bold; 3 | } -------------------------------------------------------------------------------- /dgs-bpivaty@gmail.com/info.json: -------------------------------------------------------------------------------- 1 | {"author": "bpivaty"} 2 | -------------------------------------------------------------------------------- /dgs-bpivaty@gmail.com/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/dgs-bpivaty@gmail.com/screenshot.png -------------------------------------------------------------------------------- /diaspora-notif@douze12/files/diaspora-notif@douze12/notifs.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /diaspora-notif@douze12/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/diaspora-notif@douze12/info.json -------------------------------------------------------------------------------- /diaspora-notif@douze12/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/diaspora-notif@douze12/screenshot.png -------------------------------------------------------------------------------- /directory-menu@torchipeppo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/directory-menu@torchipeppo/LICENSE -------------------------------------------------------------------------------- /directory-menu@torchipeppo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/directory-menu@torchipeppo/README.md -------------------------------------------------------------------------------- /directory-menu@torchipeppo/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/directory-menu@torchipeppo/info.json -------------------------------------------------------------------------------- /duolingo-helper@nodeengineer.com/info.json: -------------------------------------------------------------------------------- 1 | { "author": "nodeengineer" } 2 | -------------------------------------------------------------------------------- /envycontrol@zamszowy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/envycontrol@zamszowy/LICENSE -------------------------------------------------------------------------------- /envycontrol@zamszowy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/envycontrol@zamszowy/README.md -------------------------------------------------------------------------------- /envycontrol@zamszowy/files/envycontrol@zamszowy/icons/envy-amd-light-symbolic.svg: -------------------------------------------------------------------------------- 1 | envy-amd-light.svg -------------------------------------------------------------------------------- /envycontrol@zamszowy/files/envycontrol@zamszowy/icons/envy-configure-symbolic.svg: -------------------------------------------------------------------------------- 1 | envy-configure-light.svg -------------------------------------------------------------------------------- /envycontrol@zamszowy/files/envycontrol@zamszowy/icons/envy-hybrid-symbolic.svg: -------------------------------------------------------------------------------- 1 | envy-hybrid-light.svg -------------------------------------------------------------------------------- /envycontrol@zamszowy/files/envycontrol@zamszowy/icons/envy-intel-symbolic.svg: -------------------------------------------------------------------------------- 1 | envy-intel-light.svg -------------------------------------------------------------------------------- /envycontrol@zamszowy/files/envycontrol@zamszowy/icons/envy-nvidia-light.svgenvy-nvidia-symbolic.svg: -------------------------------------------------------------------------------- 1 | envy-nvidia-light.svg -------------------------------------------------------------------------------- /envycontrol@zamszowy/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "zamszowy" 3 | } 4 | -------------------------------------------------------------------------------- /envycontrol@zamszowy/right-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/envycontrol@zamszowy/right-click.png -------------------------------------------------------------------------------- /envycontrol@zamszowy/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/envycontrol@zamszowy/screenshot.png -------------------------------------------------------------------------------- /envycontrol@zamszowy/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/envycontrol@zamszowy/settings.png -------------------------------------------------------------------------------- /envycontrol@zamszowy/switched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/envycontrol@zamszowy/switched.png -------------------------------------------------------------------------------- /expressvpn@Hukuta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/expressvpn@Hukuta/README.md -------------------------------------------------------------------------------- /expressvpn@Hukuta/info.json: -------------------------------------------------------------------------------- 1 | {"author": "Hukuta"} 2 | -------------------------------------------------------------------------------- /expressvpn@Hukuta/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/expressvpn@Hukuta/screenshot.png -------------------------------------------------------------------------------- /feeds@jonbrettdev.wordpress.com/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /feeds@jonbrettdev.wordpress.com/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/feeds@jonbrettdev.wordpress.com/TODO -------------------------------------------------------------------------------- /feeds@jonbrettdev.wordpress.com/info.json: -------------------------------------------------------------------------------- 1 | {"author": "jake1164"} 2 | -------------------------------------------------------------------------------- /fish@kriegcc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/.gitignore -------------------------------------------------------------------------------- /fish@kriegcc/.prettierignore: -------------------------------------------------------------------------------- 1 | /files 2 | /temp 3 | /node_modules -------------------------------------------------------------------------------- /fish@kriegcc/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/.prettierrc -------------------------------------------------------------------------------- /fish@kriegcc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/CHANGELOG.md -------------------------------------------------------------------------------- /fish@kriegcc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/COPYING -------------------------------------------------------------------------------- /fish@kriegcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/README.md -------------------------------------------------------------------------------- /fish@kriegcc/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /fish@kriegcc/docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /fish@kriegcc/docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/docs/TODO.md -------------------------------------------------------------------------------- /fish@kriegcc/docs/TRANSLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/docs/TRANSLATION.md -------------------------------------------------------------------------------- /fish@kriegcc/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/eslint.config.mjs -------------------------------------------------------------------------------- /fish@kriegcc/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/info.json -------------------------------------------------------------------------------- /fish@kriegcc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/package.json -------------------------------------------------------------------------------- /fish@kriegcc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/screenshot.png -------------------------------------------------------------------------------- /fish@kriegcc/scripts/set-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/scripts/set-version.cjs -------------------------------------------------------------------------------- /fish@kriegcc/src/FishApplet/ErrorManager/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FishAppletErrorManager" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/FishApplet/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FishApplet" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/PopupMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/src/PopupMenu/index.ts -------------------------------------------------------------------------------- /fish@kriegcc/src/applet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/src/applet.ts -------------------------------------------------------------------------------- /fish@kriegcc/src/consts/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/src/consts/common.ts -------------------------------------------------------------------------------- /fish@kriegcc/src/consts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/src/consts/index.ts -------------------------------------------------------------------------------- /fish@kriegcc/src/consts/version.ts: -------------------------------------------------------------------------------- 1 | // This file is auto-generated by set-version.cjs 2 | export const APPLET_VERSION = "0.2.0" 3 | -------------------------------------------------------------------------------- /fish@kriegcc/src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/src/types/types.ts -------------------------------------------------------------------------------- /fish@kriegcc/src/utils/icons/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/src/utils/icons/icons.ts -------------------------------------------------------------------------------- /fish@kriegcc/src/utils/icons/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./icons" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/utils/logging/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Logger" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/utils/notification/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./notification" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/utils/pixbuf/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./image" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/src/utils/translation/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./translation" 2 | -------------------------------------------------------------------------------- /fish@kriegcc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/test.sh -------------------------------------------------------------------------------- /fish@kriegcc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/tsconfig.json -------------------------------------------------------------------------------- /fish@kriegcc/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fish@kriegcc/webpack.config.ts -------------------------------------------------------------------------------- /force-quit@cinnamon.org/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/force-quit@cinnamon.org/README.md -------------------------------------------------------------------------------- /force-quit@cinnamon.org/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/force-quit@cinnamon.org/info.json -------------------------------------------------------------------------------- /fw_fanctrl@juleskreuer.eu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fw_fanctrl@juleskreuer.eu/LICENSE -------------------------------------------------------------------------------- /fw_fanctrl@juleskreuer.eu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/fw_fanctrl@juleskreuer.eu/README.md -------------------------------------------------------------------------------- /fw_fanctrl@juleskreuer.eu/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "not-a-feature" 3 | } -------------------------------------------------------------------------------- /gamemode@axel358/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gamemode@axel358/README.md -------------------------------------------------------------------------------- /gamemode@axel358/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gamemode@axel358/info.json -------------------------------------------------------------------------------- /gamemode@axel358/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gamemode@axel358/screenshot.png -------------------------------------------------------------------------------- /github-projects@morgan-design.com/info.json: -------------------------------------------------------------------------------- 1 | {"author": "jamesmorgan"} 2 | -------------------------------------------------------------------------------- /gmail@lauritsriple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gmail@lauritsriple/README.md -------------------------------------------------------------------------------- /gmail@lauritsriple/info.json: -------------------------------------------------------------------------------- 1 | {"author": "lauritsriple"} -------------------------------------------------------------------------------- /gmail@lauritsriple/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gmail@lauritsriple/screenshot.png -------------------------------------------------------------------------------- /gnote@brett-smith/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gnote@brett-smith/README.md -------------------------------------------------------------------------------- /gnote@brett-smith/info.json: -------------------------------------------------------------------------------- 1 | {"author": "brett-smith"} 2 | -------------------------------------------------------------------------------- /gnote@brett-smith/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gnote@brett-smith/screenshot.png -------------------------------------------------------------------------------- /googledrive@pbojan/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/googledrive@pbojan/CHANGELOG.md -------------------------------------------------------------------------------- /googledrive@pbojan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/googledrive@pbojan/README.md -------------------------------------------------------------------------------- /googledrive@pbojan/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/googledrive@pbojan/info.json -------------------------------------------------------------------------------- /googledrive@pbojan/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/googledrive@pbojan/screenshot.png -------------------------------------------------------------------------------- /gpaste-reloaded@feuerfuchs.eu/info.json: -------------------------------------------------------------------------------- 1 | {"author": "feuerfuchs"} 2 | -------------------------------------------------------------------------------- /gpumonitor@axel358/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gpumonitor@axel358/README.md -------------------------------------------------------------------------------- /gpumonitor@axel358/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gpumonitor@axel358/info.json -------------------------------------------------------------------------------- /gpumonitor@axel358/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/gpumonitor@axel358/screenshot.png -------------------------------------------------------------------------------- /graphicsCenter@scollins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/graphicsCenter@scollins/README.md -------------------------------------------------------------------------------- /graphicsCenter@scollins/info.json: -------------------------------------------------------------------------------- 1 | {"author": "collinss"} 2 | -------------------------------------------------------------------------------- /healthyeyes@ipolozov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/healthyeyes@ipolozov/README.md -------------------------------------------------------------------------------- /healthyeyes@ipolozov/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/healthyeyes@ipolozov/info.json -------------------------------------------------------------------------------- /healthyeyes@ipolozov/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/healthyeyes@ipolozov/screenshot.png -------------------------------------------------------------------------------- /hideable-applets@cardsurf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hideable-applets@cardsurf/README.md -------------------------------------------------------------------------------- /hideable-applets@cardsurf/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hideable-applets@cardsurf/info.json -------------------------------------------------------------------------------- /hwmonitor@sylfurd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/README.md -------------------------------------------------------------------------------- /hwmonitor@sylfurd/files/hwmonitor@sylfurd/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/files/hwmonitor@sylfurd/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/horizontal.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/horizontal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/horizontal2.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/horizontal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/horizontal3.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/info.json -------------------------------------------------------------------------------- /hwmonitor@sylfurd/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/screenshot.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/vertical.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/vertical2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/vertical2.png -------------------------------------------------------------------------------- /hwmonitor@sylfurd/vertical3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/hwmonitor@sylfurd/vertical3.png -------------------------------------------------------------------------------- /ifstat@tagadan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ifstat@tagadan/README.md -------------------------------------------------------------------------------- /ifstat@tagadan/files/ifstat@tagadan/asd.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | ifstat -z 0.5 1 > /dev/shm/tmpnetfile 3 | -------------------------------------------------------------------------------- /ifstat@tagadan/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ifstat@tagadan/info.json -------------------------------------------------------------------------------- /ifstat@tagadan/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ifstat@tagadan/screenshot.png -------------------------------------------------------------------------------- /internet-indicator@sangorys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/internet-indicator@sangorys/README.md -------------------------------------------------------------------------------- /internet-indicator@sangorys/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/internet-indicator@sangorys/info.json -------------------------------------------------------------------------------- /ioDisk@ctrlesc/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ioDisk@ctrlesc/info.json -------------------------------------------------------------------------------- /ioDisk@ctrlesc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ioDisk@ctrlesc/screenshot.png -------------------------------------------------------------------------------- /ipindicator@matus.benko@gmail.com/files/ipindicator@matus.benko@gmail.com/getNetworkInterfaces.sh: -------------------------------------------------------------------------------- 1 | ip -br link | awk '{ print $1 }' 2 | -------------------------------------------------------------------------------- /ipindicator@matus.benko@gmail.com/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "PrimaMateria" 3 | } 4 | -------------------------------------------------------------------------------- /jalalicalendar@mohammad-sn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/jalalicalendar@mohammad-sn/README.md -------------------------------------------------------------------------------- /jalalicalendar@mohammad-sn/info.json: -------------------------------------------------------------------------------- 1 | {"author": "mohammad-sn"} 2 | -------------------------------------------------------------------------------- /jenkins@backuity.org/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/jenkins@backuity.org/info.json -------------------------------------------------------------------------------- /jenkins@backuity.org/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/jenkins@backuity.org/screenshot.png -------------------------------------------------------------------------------- /kdecapplet@joejoetv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/kdecapplet@joejoetv/README.md -------------------------------------------------------------------------------- /kdecapplet@joejoetv/files/kdecapplet@joejoetv/requirements.txt: -------------------------------------------------------------------------------- 1 | kdeconnect>=1.3 2 | python3 -------------------------------------------------------------------------------- /kdecapplet@joejoetv/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/kdecapplet@joejoetv/info.json -------------------------------------------------------------------------------- /kdecapplet@joejoetv/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/kdecapplet@joejoetv/screenshot.png -------------------------------------------------------------------------------- /kdeccc@Severga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/kdeccc@Severga/README.md -------------------------------------------------------------------------------- /kdeccc@Severga/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Severga" 3 | } 4 | -------------------------------------------------------------------------------- /kdeccc@Severga/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/kdeccc@Severga/screenshot.png -------------------------------------------------------------------------------- /localip@mrieracrespi/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/localip@mrieracrespi/info.json -------------------------------------------------------------------------------- /localip@mrieracrespi/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/localip@mrieracrespi/screenshot.png -------------------------------------------------------------------------------- /localipswithsettings@edaubert/info.json: -------------------------------------------------------------------------------- 1 | {"author": "edaubert"} 2 | -------------------------------------------------------------------------------- /location-detection@heimdall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/location-detection@heimdall/README.md -------------------------------------------------------------------------------- /location-detection@heimdall/files/location-detection@heimdall/flags/gb.png: -------------------------------------------------------------------------------- 1 | uk.png -------------------------------------------------------------------------------- /location-detection@heimdall/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/location-detection@heimdall/info.json -------------------------------------------------------------------------------- /lorem@vxstorm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/lorem@vxstorm/info.json -------------------------------------------------------------------------------- /lorem@vxstorm/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/lorem@vxstorm/screenshot.png -------------------------------------------------------------------------------- /mailnagapplet@ozderya.net/info.json: -------------------------------------------------------------------------------- 1 | {"author": "hyOzd"} 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/maximus-buttons@hanspr/README.md -------------------------------------------------------------------------------- /maximus-buttons@hanspr/files/maximus-buttons@hanspr/themes/Mac-OS-X/ABOUT: -------------------------------------------------------------------------------- 1 | Based off Mac-OS-X theme 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/files/maximus-buttons@hanspr/themes/Radiance/ABOUT: -------------------------------------------------------------------------------- 1 | Based off Unity's Radiance theme. 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/files/maximus-buttons@hanspr/themes/UniMetro-Black/ABOUT: -------------------------------------------------------------------------------- 1 | Author: jsnjinga 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/files/maximus-buttons@hanspr/themes/UniMetro/ABOUT: -------------------------------------------------------------------------------- 1 | Author: jsnjinga 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/files/maximus-buttons@hanspr/themes/default/ABOUT: -------------------------------------------------------------------------------- 1 | Based off Mac-OS-X theme 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/info.json: -------------------------------------------------------------------------------- 1 | {"author": "hanspr"} 2 | -------------------------------------------------------------------------------- /maximus-buttons@hanspr/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/maximus-buttons@hanspr/screenshot.png -------------------------------------------------------------------------------- /maximus-title@hanspr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/maximus-title@hanspr/README.md -------------------------------------------------------------------------------- /maximus-title@hanspr/info.json: -------------------------------------------------------------------------------- 1 | {"author": "hanspr"} 2 | -------------------------------------------------------------------------------- /maximus-title@hanspr/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/maximus-title@hanspr/screenshot.png -------------------------------------------------------------------------------- /mediacontrols@rbfraphael/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | - First version -------------------------------------------------------------------------------- /mediacontrols@rbfraphael/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mediacontrols@rbfraphael/README.md -------------------------------------------------------------------------------- /mediacontrols@rbfraphael/files/mediacontrols@rbfraphael/stylesheet.css: -------------------------------------------------------------------------------- 1 | .mediacontrols_rbfraphael-element { 2 | margin-right: 8px; 3 | } -------------------------------------------------------------------------------- /mediacontrols@rbfraphael/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mediacontrols@rbfraphael/info.json -------------------------------------------------------------------------------- /menu@csknet.org/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/menu@csknet.org/info.json -------------------------------------------------------------------------------- /menu@csknet.org/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/menu@csknet.org/screenshot.png -------------------------------------------------------------------------------- /mic-level@zamszowy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mic-level@zamszowy/LICENSE -------------------------------------------------------------------------------- /mic-level@zamszowy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mic-level@zamszowy/README.md -------------------------------------------------------------------------------- /mic-level@zamszowy/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "zamszowy" 3 | } 4 | -------------------------------------------------------------------------------- /mic-level@zamszowy/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mic-level@zamszowy/screenshot.png -------------------------------------------------------------------------------- /moonphase@techi-freki/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/moonphase@techi-freki/CHANGELOG.md -------------------------------------------------------------------------------- /moonphase@techi-freki/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/moonphase@techi-freki/LICENSE -------------------------------------------------------------------------------- /moonphase@techi-freki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/moonphase@techi-freki/README.md -------------------------------------------------------------------------------- /moonphase@techi-freki/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/moonphase@techi-freki/info.json -------------------------------------------------------------------------------- /moonphase@techi-freki/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/moonphase@techi-freki/screenshot.png -------------------------------------------------------------------------------- /mouse-keys-shortcut@GabrielCamara3526/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "GabrielCamara3526" 3 | } -------------------------------------------------------------------------------- /multicore-sys-monitor@ccadeptic23/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/multicore-sys-monitor@ccadeptic23/CHANGELOG.md -------------------------------------------------------------------------------- /multicore-sys-monitor@ccadeptic23/README.md: -------------------------------------------------------------------------------- 1 | files/multicore-sys-monitor@ccadeptic23/README.md -------------------------------------------------------------------------------- /multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/3.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/3.4/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /multicore-sys-monitor@ccadeptic23/files/multicore-sys-monitor@ccadeptic23/4.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /mybookmarks@markbokil.com/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mybookmarks@markbokil.com/info.json -------------------------------------------------------------------------------- /mylauncher@markbokil.com/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/mylauncher@markbokil.com/info.json -------------------------------------------------------------------------------- /netusagemonitor@pdcurtis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/netusagemonitor@pdcurtis/.gitignore -------------------------------------------------------------------------------- /netusagemonitor@pdcurtis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/netusagemonitor@pdcurtis/CHANGELOG.md -------------------------------------------------------------------------------- /netusagemonitor@pdcurtis/README.md: -------------------------------------------------------------------------------- 1 | files/netusagemonitor@pdcurtis/README.md -------------------------------------------------------------------------------- /netusagemonitor@pdcurtis/files/netusagemonitor@pdcurtis/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /netusagemonitor@pdcurtis/files/netusagemonitor@pdcurtis/4.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /netusagemonitor@pdcurtis/info.json: -------------------------------------------------------------------------------- 1 | {"author": "pdcurtis"} -------------------------------------------------------------------------------- /network@brownsr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/network@brownsr/README.md -------------------------------------------------------------------------------- /network@brownsr/info.json: -------------------------------------------------------------------------------- 1 | {"author": "brownsr"} -------------------------------------------------------------------------------- /network@brownsr/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/network@brownsr/screenshot.png -------------------------------------------------------------------------------- /networkmonitor@axel358/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/networkmonitor@axel358/README.md -------------------------------------------------------------------------------- /networkmonitor@axel358/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/networkmonitor@axel358/info.json -------------------------------------------------------------------------------- /networkmonitor@axel358/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/networkmonitor@axel358/screenshot.png -------------------------------------------------------------------------------- /nextslide@yaya-cout/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "yaya-cout" 3 | } -------------------------------------------------------------------------------- /nextslide@yaya-cout/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nextslide@yaya-cout/screenshot.png -------------------------------------------------------------------------------- /nightlight@Severga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nightlight@Severga/README.md -------------------------------------------------------------------------------- /nightlight@Severga/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Severga" 3 | } 4 | -------------------------------------------------------------------------------- /nightlight@Severga/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nightlight@Severga/screenshot.png -------------------------------------------------------------------------------- /nightscout@ranneft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nightscout@ranneft/LICENSE -------------------------------------------------------------------------------- /nightscout@ranneft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nightscout@ranneft/README.md -------------------------------------------------------------------------------- /nightscout@ranneft/info.json: -------------------------------------------------------------------------------- 1 | {"author": "ImmRanneft"} 2 | -------------------------------------------------------------------------------- /nightscout@ranneft/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nightscout@ranneft/screenshot.png -------------------------------------------------------------------------------- /nordvpn-indicator@nickdurante/info.json: -------------------------------------------------------------------------------- 1 | {"author": "nickdurante"} 2 | -------------------------------------------------------------------------------- /notification-mute@jgillula/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/notification-mute@jgillula/README.md -------------------------------------------------------------------------------- /notification-mute@jgillula/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "jgillula" 3 | } 4 | -------------------------------------------------------------------------------- /notifications-enhanced@hilyxx/info.json: -------------------------------------------------------------------------------- 1 | {"author": "hilyxx"} 2 | -------------------------------------------------------------------------------- /nvidia-temp@sophie-la-li/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nvidia-temp@sophie-la-li/README.md -------------------------------------------------------------------------------- /nvidia-temp@sophie-la-li/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "sophie-la-li" 3 | } 4 | -------------------------------------------------------------------------------- /nvidiaprime@pdcurtis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/nvidiaprime@pdcurtis/CHANGELOG.md -------------------------------------------------------------------------------- /nvidiaprime@pdcurtis/README.md: -------------------------------------------------------------------------------- 1 | files/nvidiaprime@pdcurtis/README.md -------------------------------------------------------------------------------- /nvidiaprime@pdcurtis/files/nvidiaprime@pdcurtis/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /nvidiaprime@pdcurtis/info.json: -------------------------------------------------------------------------------- 1 | {"author": "pdcurtis"} -------------------------------------------------------------------------------- /nvidiaprime@pdcurtis/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/nvidiaprime@pdcurtis/screenshot.png -------------------------------------------------------------------------------- /octopussy@centurix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/octopussy@centurix/README.md -------------------------------------------------------------------------------- /octopussy@centurix/files/octopussy@centurix/po/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octopussy@centurix/info.json: -------------------------------------------------------------------------------- 1 | {"author": "centurix"} -------------------------------------------------------------------------------- /octopussy@centurix/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/octopussy@centurix/screenshot.png -------------------------------------------------------------------------------- /officeCenter@scollins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/officeCenter@scollins/README.md -------------------------------------------------------------------------------- /officeCenter@scollins/info.json: -------------------------------------------------------------------------------- 1 | {"author": "collinss"} 2 | -------------------------------------------------------------------------------- /officeCenter@scollins/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/officeCenter@scollins/screenshot.png -------------------------------------------------------------------------------- /onekoToggle@kusch3l/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/onekoToggle@kusch3l/README.md -------------------------------------------------------------------------------- /onekoToggle@kusch3l/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "kusch3l" 3 | } 4 | -------------------------------------------------------------------------------- /onekoToggle@kusch3l/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/onekoToggle@kusch3l/screenshot.png -------------------------------------------------------------------------------- /pa-equalizer@jschug.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/pa-equalizer@jschug.com/README.md -------------------------------------------------------------------------------- /pa-equalizer@jschug.com/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/pa-equalizer@jschug.com/info.json -------------------------------------------------------------------------------- /panel-tweaks@anaximeno/README.md: -------------------------------------------------------------------------------- 1 | # Cinnamon Panel Tweaker Applet 2 | -------------------------------------------------------------------------------- /panel-tweaks@anaximeno/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/panel-tweaks@anaximeno/TODO.md -------------------------------------------------------------------------------- /panel-tweaks@anaximeno/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/panel-tweaks@anaximeno/info.json -------------------------------------------------------------------------------- /panel-tweaks@anaximeno/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/panel-tweaks@anaximeno/screenshot.png -------------------------------------------------------------------------------- /paneldo@beatlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/paneldo@beatlink/README.md -------------------------------------------------------------------------------- /paneldo@beatlink/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/paneldo@beatlink/info.json -------------------------------------------------------------------------------- /paneldo@beatlink/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/paneldo@beatlink/screenshot.png -------------------------------------------------------------------------------- /paneldo@beatlink/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/paneldo@beatlink/settings.png -------------------------------------------------------------------------------- /password-generator@spencerlommel.com/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "SpencerLommel" 3 | } -------------------------------------------------------------------------------- /pin-unpin-panel@anaximeno/README.md: -------------------------------------------------------------------------------- 1 | # Pin-Unpin Panel Applet 2 | -------------------------------------------------------------------------------- /pin-unpin-panel@anaximeno/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/pin-unpin-panel@anaximeno/info.json -------------------------------------------------------------------------------- /places-bookmarks@dmo60.de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/places-bookmarks@dmo60.de/README.md -------------------------------------------------------------------------------- /places-bookmarks@dmo60.de/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/places-bookmarks@dmo60.de/info.json -------------------------------------------------------------------------------- /placesCenter@scollins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/placesCenter@scollins/README.md -------------------------------------------------------------------------------- /placesCenter@scollins/info.json: -------------------------------------------------------------------------------- 1 | {"author": "collinss"} 2 | -------------------------------------------------------------------------------- /placesCenter@scollins/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/placesCenter@scollins/screenshot.png -------------------------------------------------------------------------------- /pomodoro@gregfreeman.org/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/pomodoro@gregfreeman.org/CHANGELOG.md -------------------------------------------------------------------------------- /pomodoro@gregfreeman.org/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/pomodoro@gregfreeman.org/README.md -------------------------------------------------------------------------------- /pomodoro@gregfreeman.org/files/pomodoro@gregfreeman.org/icon.png: -------------------------------------------------------------------------------- 1 | pomodoro.png -------------------------------------------------------------------------------- /pomodoro@gregfreeman.org/info.json: -------------------------------------------------------------------------------- 1 | {"author": "gfreeau"} 2 | -------------------------------------------------------------------------------- /power-profiles@rcalixte/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/power-profiles@rcalixte/CHANGELOG.md -------------------------------------------------------------------------------- /power-profiles@rcalixte/README.md: -------------------------------------------------------------------------------- 1 | files/power-profiles@rcalixte/README.md -------------------------------------------------------------------------------- /power-profiles@rcalixte/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "rcalixte" 3 | } 4 | -------------------------------------------------------------------------------- /printers@linux-man/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/printers@linux-man/LICENSE -------------------------------------------------------------------------------- /printers@linux-man/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/printers@linux-man/README.md -------------------------------------------------------------------------------- /printers@linux-man/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/printers@linux-man/info.json -------------------------------------------------------------------------------- /printers@linux-man/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/printers@linux-man/screenshot.png -------------------------------------------------------------------------------- /profile-switcher@pixunil/info.json: -------------------------------------------------------------------------------- 1 | {"author": "pixunil"} -------------------------------------------------------------------------------- /proxy-mode@yrtimid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/proxy-mode@yrtimid/CHANGELOG.md -------------------------------------------------------------------------------- /proxy-mode@yrtimid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/proxy-mode@yrtimid/README.md -------------------------------------------------------------------------------- /proxy-mode@yrtimid/info.json: -------------------------------------------------------------------------------- 1 | {"author": "yrtimiD"} -------------------------------------------------------------------------------- /proxy-mode@yrtimid/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/proxy-mode@yrtimid/screenshot.png -------------------------------------------------------------------------------- /ptt@thbemme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ptt@thbemme/README.md -------------------------------------------------------------------------------- /ptt@thbemme/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "thbemme" 3 | } 4 | -------------------------------------------------------------------------------- /ptt@thbemme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ptt@thbemme/screenshot.png -------------------------------------------------------------------------------- /qredshift@quintao/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/qredshift@quintao/README.md -------------------------------------------------------------------------------- /qredshift@quintao/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/qredshift@quintao/info.json -------------------------------------------------------------------------------- /qredshift@quintao/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/qredshift@quintao/screenshot.png -------------------------------------------------------------------------------- /radio@driglu4it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/README.md -------------------------------------------------------------------------------- /radio@driglu4it/files/radio@driglu4it/3.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /radio@driglu4it/files/radio@driglu4it/3.0/icons: -------------------------------------------------------------------------------- 1 | ../icons/ -------------------------------------------------------------------------------- /radio@driglu4it/files/radio@driglu4it/4.6/icons: -------------------------------------------------------------------------------- 1 | ../icons/ -------------------------------------------------------------------------------- /radio@driglu4it/files/radio@driglu4it/4.6/stylesheet.css: -------------------------------------------------------------------------------- 1 | .radio-applet-media-control-toolbar { 2 | padding: 10px; 3 | } -------------------------------------------------------------------------------- /radio@driglu4it/files/radio@driglu4it/6.4/icons: -------------------------------------------------------------------------------- 1 | ../icons/ -------------------------------------------------------------------------------- /radio@driglu4it/files/radio@driglu4it/6.4/stylesheet.css: -------------------------------------------------------------------------------- 1 | .radio-applet-media-control-toolbar { 2 | padding: 10px; 3 | } -------------------------------------------------------------------------------- /radio@driglu4it/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/info.json -------------------------------------------------------------------------------- /radio@driglu4it/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/jest.config.js -------------------------------------------------------------------------------- /radio@driglu4it/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/package.json -------------------------------------------------------------------------------- /radio@driglu4it/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/screenshot.png -------------------------------------------------------------------------------- /radio@driglu4it/src/ci.d.ts: -------------------------------------------------------------------------------- 1 | import "@ci-types/cjs"; -------------------------------------------------------------------------------- /radio@driglu4it/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/consts.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/index.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/lib/AppletIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/lib/AppletIcon.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/lib/PopupMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/lib/PopupMenu.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/lib/Slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/lib/Slider.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/lib/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/lib/notify.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/polyfill.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/tsconfig.json -------------------------------------------------------------------------------- /radio@driglu4it/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/types.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/ui/InfoSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/ui/InfoSection.ts -------------------------------------------------------------------------------- /radio@driglu4it/src/ui/Seeker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/src/ui/Seeker.ts -------------------------------------------------------------------------------- /radio@driglu4it/tests/ci.d.ts: -------------------------------------------------------------------------------- 1 | import "@ci-types/cjs"; -------------------------------------------------------------------------------- /radio@driglu4it/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/tests/tsconfig.json -------------------------------------------------------------------------------- /radio@driglu4it/tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/tsconfig-base.json -------------------------------------------------------------------------------- /radio@driglu4it/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/radio@driglu4it/webpack.config.js -------------------------------------------------------------------------------- /rancher@centurix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rancher@centurix/README.md -------------------------------------------------------------------------------- /rancher@centurix/files/rancher@centurix/po/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rancher@centurix/info.json: -------------------------------------------------------------------------------- 1 | {"author": "centurix"} -------------------------------------------------------------------------------- /rancher@centurix/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rancher@centurix/screenshot.png -------------------------------------------------------------------------------- /ratecurrency@magner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ratecurrency@magner/README.md -------------------------------------------------------------------------------- /ratecurrency@magner/files/ratecurrency@magner/images/fiat_money/source.txt: -------------------------------------------------------------------------------- 1 | https://www.flaticon.com/packs/countrys-flags 2 | -------------------------------------------------------------------------------- /ratecurrency@magner/info.json: -------------------------------------------------------------------------------- 1 | { "author": "AleksiMagner" } -------------------------------------------------------------------------------- /ratecurrency@magner/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ratecurrency@magner/screenshot.png -------------------------------------------------------------------------------- /redshift@marvel4u/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/redshift@marvel4u/README.md -------------------------------------------------------------------------------- /redshift@marvel4u/info.json: -------------------------------------------------------------------------------- 1 | {"author": "marvel4u"} 2 | -------------------------------------------------------------------------------- /redshift@marvel4u/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/redshift@marvel4u/screenshot.png -------------------------------------------------------------------------------- /restart-cinnamon@kolle/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/restart-cinnamon@kolle/info.json -------------------------------------------------------------------------------- /restart-cinnamon@kolle/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/restart-cinnamon@kolle/screenshot.png -------------------------------------------------------------------------------- /rssNewsticker@KopfDesDaemons/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "KopfDesDaemons" 3 | } -------------------------------------------------------------------------------- /rswitcher@nixdev.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rswitcher@nixdev.com/README.md -------------------------------------------------------------------------------- /rswitcher@nixdev.com/info.json: -------------------------------------------------------------------------------- 1 | { "author": "mindbeat" } 2 | -------------------------------------------------------------------------------- /rswitcher@nixdev.com/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rswitcher@nixdev.com/screenshot.png -------------------------------------------------------------------------------- /rust-menu@jerrywham/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rust-menu@jerrywham/README.md -------------------------------------------------------------------------------- /rust-menu@jerrywham/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rust-menu@jerrywham/info.json -------------------------------------------------------------------------------- /rust-menu@jerrywham/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rust-menu@jerrywham/screenshot.png -------------------------------------------------------------------------------- /rwall@typicalfoobar/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rwall@typicalfoobar/LICENSE.md -------------------------------------------------------------------------------- /rwall@typicalfoobar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rwall@typicalfoobar/README.md -------------------------------------------------------------------------------- /rwall@typicalfoobar/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rwall@typicalfoobar/info.json -------------------------------------------------------------------------------- /rwall@typicalfoobar/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/rwall@typicalfoobar/screenshot.png -------------------------------------------------------------------------------- /screen-inhibit@mtwebster/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/screen-inhibit@mtwebster/CHANGELOG.md -------------------------------------------------------------------------------- /screen-inhibit@mtwebster/README.md: -------------------------------------------------------------------------------- 1 | files/screen-inhibit@mtwebster/README.md -------------------------------------------------------------------------------- /screen-inhibit@mtwebster/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/screen-inhibit@mtwebster/info.json -------------------------------------------------------------------------------- /scripts@paucapo.com/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/scripts@paucapo.com/CHANGELOG.md -------------------------------------------------------------------------------- /scripts@paucapo.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/scripts@paucapo.com/README.md -------------------------------------------------------------------------------- /scripts@paucapo.com/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/scripts@paucapo.com/info.json -------------------------------------------------------------------------------- /scripts@paucapo.com/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/scripts@paucapo.com/screenshot.png -------------------------------------------------------------------------------- /sct@skulptist.de/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sct@skulptist.de/LICENSE -------------------------------------------------------------------------------- /sct@skulptist.de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sct@skulptist.de/README.md -------------------------------------------------------------------------------- /sct@skulptist.de/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Matthias-Hermsdorf" 3 | } 4 | -------------------------------------------------------------------------------- /sct@skulptist.de/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sct@skulptist.de/screenshot.png -------------------------------------------------------------------------------- /search-box@mtwebster/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/search-box@mtwebster/CHANGELOG.md -------------------------------------------------------------------------------- /search-box@mtwebster/README.md: -------------------------------------------------------------------------------- 1 | files/search-box@mtwebster/README.md -------------------------------------------------------------------------------- /search-box@mtwebster/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/search-box@mtwebster/info.json -------------------------------------------------------------------------------- /search-box@mtwebster/screenshot.png: -------------------------------------------------------------------------------- 1 | files/search-box@mtwebster/screenshot.png -------------------------------------------------------------------------------- /separator2@zyzz/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/separator2@zyzz/info.json -------------------------------------------------------------------------------- /separator2@zyzz/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/separator2@zyzz/screenshot.png -------------------------------------------------------------------------------- /serviceLauncher@hulygun/info.json: -------------------------------------------------------------------------------- 1 | {"author": "hulygun"} -------------------------------------------------------------------------------- /sessionManager@scollins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sessionManager@scollins/README.md -------------------------------------------------------------------------------- /sessionManager@scollins/info.json: -------------------------------------------------------------------------------- 1 | {"author": "collinss"} 2 | -------------------------------------------------------------------------------- /shadowsocks-switch@Klavionik/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Klavionik" 3 | } 4 | -------------------------------------------------------------------------------- /show-hide-applets@mohammad-sn/info.json: -------------------------------------------------------------------------------- 1 | {"author": "mohammad-sn"} -------------------------------------------------------------------------------- /shutdown-timer@webum.by/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/shutdown-timer@webum.by/info.json -------------------------------------------------------------------------------- /signout@kayfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/signout@kayfo/README.md -------------------------------------------------------------------------------- /signout@kayfo/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/signout@kayfo/info.json -------------------------------------------------------------------------------- /signout@kayfo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/signout@kayfo/screenshot.png -------------------------------------------------------------------------------- /simple-timer@naheller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/simple-timer@naheller/README.md -------------------------------------------------------------------------------- /simple-timer@naheller/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "naheller" 3 | } -------------------------------------------------------------------------------- /simple-timer@naheller/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/simple-timer@naheller/screenshot.png -------------------------------------------------------------------------------- /skeuos-remix@benlazhar.com/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/skeuos-remix@benlazhar.com/LICENSE -------------------------------------------------------------------------------- /skeuos-remix@benlazhar.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/skeuos-remix@benlazhar.com/README.md -------------------------------------------------------------------------------- /skeuos-remix@benlazhar.com/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/skeuos-remix@benlazhar.com/info.json -------------------------------------------------------------------------------- /sleepTimer@JDatPNW/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sleepTimer@JDatPNW/LICENSE -------------------------------------------------------------------------------- /sleepTimer@JDatPNW/info.json: -------------------------------------------------------------------------------- 1 | {"author": "JDatPNW"} 2 | -------------------------------------------------------------------------------- /sleepTimer@JDatPNW/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sleepTimer@JDatPNW/screenshot.png -------------------------------------------------------------------------------- /smallcalc_applet@lerc.sds/info.json: -------------------------------------------------------------------------------- 1 | {"author": "lerc"} 2 | -------------------------------------------------------------------------------- /sound150@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/sound150@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /sound150@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/sound150@claudiux/README.md -------------------------------------------------------------------------------- /sound150@claudiux/files/sound150@claudiux/2.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sound150@claudiux/files/sound150@claudiux/3.4/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sound150@claudiux/files/sound150@claudiux/4.4/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sound150@claudiux/files/sound150@claudiux/4.6/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sound150@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sound150@claudiux/info.json -------------------------------------------------------------------------------- /sound150@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sound150@claudiux/screenshot.png -------------------------------------------------------------------------------- /spices-notifier@germanfr/README.md: -------------------------------------------------------------------------------- 1 | files/spices-notifier@germanfr/README.md -------------------------------------------------------------------------------- /spices-notifier@germanfr/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/spices-notifier@germanfr/info.json -------------------------------------------------------------------------------- /spices-notifier@germanfr/screenshot.png: -------------------------------------------------------------------------------- 1 | files/spices-notifier@germanfr/screenshot.png -------------------------------------------------------------------------------- /sshconnect@foobar-beer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sshconnect@foobar-beer/README.md -------------------------------------------------------------------------------- /sshconnect@foobar-beer/info.json: -------------------------------------------------------------------------------- 1 | {"author": "foobar-beer"} 2 | -------------------------------------------------------------------------------- /sshconnect@foobar-beer/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sshconnect@foobar-beer/screenshot.png -------------------------------------------------------------------------------- /sshlauncher@sumo/info.json: -------------------------------------------------------------------------------- 1 | {"author": "sumo"} -------------------------------------------------------------------------------- /sshlauncher@sumo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sshlauncher@sumo/screenshot.png -------------------------------------------------------------------------------- /ssm@Severga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ssm@Severga/README.md -------------------------------------------------------------------------------- /ssm@Severga/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Severga" 3 | } 4 | -------------------------------------------------------------------------------- /ssm@Severga/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/ssm@Severga/screenshot.png -------------------------------------------------------------------------------- /stacks@centurix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/stacks@centurix/README.md -------------------------------------------------------------------------------- /stacks@centurix/files/stacks@centurix/po/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stacks@centurix/info.json: -------------------------------------------------------------------------------- 1 | {"author": "centurix"} -------------------------------------------------------------------------------- /stacks@centurix/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/stacks@centurix/screenshot.png -------------------------------------------------------------------------------- /standardIconNames@jerrywham/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/standardIconNames@jerrywham/README.md -------------------------------------------------------------------------------- /standardIconNames@jerrywham/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/standardIconNames@jerrywham/info.json -------------------------------------------------------------------------------- /stevedore@centurix/README.md: -------------------------------------------------------------------------------- 1 | files/stevedore@centurix/README.md -------------------------------------------------------------------------------- /stevedore@centurix/files/stevedore@centurix/settings-schema.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /stevedore@centurix/info.json: -------------------------------------------------------------------------------- 1 | {"author": "centurix"} 2 | -------------------------------------------------------------------------------- /stevedore@centurix/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/stevedore@centurix/screenshot.png -------------------------------------------------------------------------------- /sticky@scollins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sticky@scollins/README.md -------------------------------------------------------------------------------- /sticky@scollins/files/sticky@scollins/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sticky@scollins/files/sticky@scollins/3.2/icons: -------------------------------------------------------------------------------- 1 | ../icons/ -------------------------------------------------------------------------------- /sticky@scollins/files/sticky@scollins/3.2/stylesheet.css: -------------------------------------------------------------------------------- 1 | ../stylesheet.css -------------------------------------------------------------------------------- /sticky@scollins/info.json: -------------------------------------------------------------------------------- 1 | {"author": "collinss"} 2 | -------------------------------------------------------------------------------- /sticky@scollins/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sticky@scollins/screenshot.png -------------------------------------------------------------------------------- /stopwatch@pdcurtis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/stopwatch@pdcurtis/CHANGELOG.md -------------------------------------------------------------------------------- /stopwatch@pdcurtis/README.md: -------------------------------------------------------------------------------- 1 | files/stopwatch@pdcurtis/README.md -------------------------------------------------------------------------------- /stopwatch@pdcurtis/files/stopwatch@pdcurtis/3.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /stopwatch@pdcurtis/files/stopwatch@pdcurtis/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /stopwatch@pdcurtis/info.json: -------------------------------------------------------------------------------- 1 | {"author": "pdcurtis"} -------------------------------------------------------------------------------- /stopwatch@pdcurtis/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/stopwatch@pdcurtis/screenshot.png -------------------------------------------------------------------------------- /suspend@janax/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/suspend@janax/CHANGELOG.md -------------------------------------------------------------------------------- /suspend@janax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/suspend@janax/README.md -------------------------------------------------------------------------------- /suspend@janax/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/suspend@janax/info.json -------------------------------------------------------------------------------- /suspend@janax/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/suspend@janax/screenshot.png -------------------------------------------------------------------------------- /sync@szlldm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sync@szlldm/LICENSE -------------------------------------------------------------------------------- /sync@szlldm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sync@szlldm/README.md -------------------------------------------------------------------------------- /sync@szlldm/info.json: -------------------------------------------------------------------------------- 1 | {"author": "szlldm"} 2 | -------------------------------------------------------------------------------- /sync@szlldm/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sync@szlldm/screenshot.png -------------------------------------------------------------------------------- /sysmon@rohan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sysmon@rohan/README.md -------------------------------------------------------------------------------- /sysmon@rohan/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "222rohan" 3 | } 4 | -------------------------------------------------------------------------------- /sysmon@rohan/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sysmon@rohan/screenshot.png -------------------------------------------------------------------------------- /sysmonitor@orcus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sysmonitor@orcus/CHANGELOG.md -------------------------------------------------------------------------------- /sysmonitor@orcus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sysmonitor@orcus/README.md -------------------------------------------------------------------------------- /sysmonitor@orcus/files/sysmonitor@orcus/3.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sysmonitor@orcus/files/sysmonitor@orcus/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /sysmonitor@orcus/info.json: -------------------------------------------------------------------------------- 1 | {"author": "orcuscz"} 2 | -------------------------------------------------------------------------------- /sysmonitor@orcus/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/sysmonitor@orcus/screenshot.png -------------------------------------------------------------------------------- /system-controls@rcalixte/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/system-controls@rcalixte/CHANGELOG.md -------------------------------------------------------------------------------- /system-controls@rcalixte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/system-controls@rcalixte/README.md -------------------------------------------------------------------------------- /system-controls@rcalixte/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "rcalixte" 3 | } 4 | -------------------------------------------------------------------------------- /system-monitor@spacy01/info.json: -------------------------------------------------------------------------------- 1 | {"author": "spacy01"} -------------------------------------------------------------------------------- /system-monitor@spacy01/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/system-monitor@spacy01/screenshot.png -------------------------------------------------------------------------------- /systray-collapsible@koutch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/systray-collapsible@koutch/README.md -------------------------------------------------------------------------------- /systray-collapsible@koutch/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/systray-collapsible@koutch/info.json -------------------------------------------------------------------------------- /tapo@smiklosovic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tapo@smiklosovic/README.md -------------------------------------------------------------------------------- /tapo@smiklosovic/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tapo@smiklosovic/info.json -------------------------------------------------------------------------------- /tapo@smiklosovic/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tapo@smiklosovic/screenshot.png -------------------------------------------------------------------------------- /tapo@smiklosovic/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tapo@smiklosovic/settings.png -------------------------------------------------------------------------------- /temperature@fevimu/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/temperature@fevimu/.eslintrc.json -------------------------------------------------------------------------------- /temperature@fevimu/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /temperature@fevimu/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/temperature@fevimu/gulpfile.js -------------------------------------------------------------------------------- /temperature@fevimu/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/temperature@fevimu/info.json -------------------------------------------------------------------------------- /temperature@fevimu/locale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/temperature@fevimu/locale.sh -------------------------------------------------------------------------------- /temperature@fevimu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/temperature@fevimu/package.json -------------------------------------------------------------------------------- /temperature@fevimu/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/temperature@fevimu/screenshot.png -------------------------------------------------------------------------------- /test-spice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/test-spice -------------------------------------------------------------------------------- /timeout@narutrey/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeout@narutrey/LICENSE -------------------------------------------------------------------------------- /timeout@narutrey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeout@narutrey/README.md -------------------------------------------------------------------------------- /timeout@narutrey/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeout@narutrey/info.json -------------------------------------------------------------------------------- /timeout@narutrey/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeout@narutrey/screenshot.png -------------------------------------------------------------------------------- /timer@Severga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timer@Severga/README.md -------------------------------------------------------------------------------- /timer@Severga/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Severga" 3 | } 4 | -------------------------------------------------------------------------------- /timer@Severga/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timer@Severga/screenshot.png -------------------------------------------------------------------------------- /timeshift-spy@nicog60/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeshift-spy@nicog60/CHANGELOG.md -------------------------------------------------------------------------------- /timeshift-spy@nicog60/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeshift-spy@nicog60/LICENSE -------------------------------------------------------------------------------- /timeshift-spy@nicog60/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeshift-spy@nicog60/README.md -------------------------------------------------------------------------------- /timeshift-spy@nicog60/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeshift-spy@nicog60/info.json -------------------------------------------------------------------------------- /timeshift-spy@nicog60/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/timeshift-spy@nicog60/screenshot.png -------------------------------------------------------------------------------- /todo@threefi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/todo@threefi/README.md -------------------------------------------------------------------------------- /todo@threefi/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/todo@threefi/info.json -------------------------------------------------------------------------------- /todo@threefi/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/todo@threefi/screenshot.png -------------------------------------------------------------------------------- /tor-button@shatur/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tor-button@shatur/CHANGELOG.md -------------------------------------------------------------------------------- /tor-button@shatur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tor-button@shatur/README.md -------------------------------------------------------------------------------- /tor-button@shatur/info.json: -------------------------------------------------------------------------------- 1 | {"author": "Shatur95"} 2 | -------------------------------------------------------------------------------- /tor-button@shatur/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tor-button@shatur/screenshot.png -------------------------------------------------------------------------------- /trilium-api@beatlink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/trilium-api@beatlink/README.md -------------------------------------------------------------------------------- /trilium-api@beatlink/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/trilium-api@beatlink/info.json -------------------------------------------------------------------------------- /trilium-api@beatlink/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/trilium-api@beatlink/screenshot.png -------------------------------------------------------------------------------- /turn-off-monitor@zablotski/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/turn-off-monitor@zablotski/README.md -------------------------------------------------------------------------------- /turn-off-monitor@zablotski/info.json: -------------------------------------------------------------------------------- 1 | {"author": "zablotski"} -------------------------------------------------------------------------------- /tzclock@lhriley/info.json: -------------------------------------------------------------------------------- 1 | {"author": "lhriley"} 2 | -------------------------------------------------------------------------------- /tzclock@lhriley/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/tzclock@lhriley/screenshot.png -------------------------------------------------------------------------------- /uiscaler@joka42/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uiscaler@joka42/README.md -------------------------------------------------------------------------------- /uiscaler@joka42/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "joka42" 3 | } -------------------------------------------------------------------------------- /uiscaler@joka42/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uiscaler@joka42/screenshot.png -------------------------------------------------------------------------------- /updates-notifier@zamszowy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/updates-notifier@zamszowy/LICENSE -------------------------------------------------------------------------------- /updates-notifier@zamszowy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/updates-notifier@zamszowy/README.md -------------------------------------------------------------------------------- /updates-notifier@zamszowy/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "zamszowy" 3 | } 4 | -------------------------------------------------------------------------------- /uptime@vatanuki.kun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/README.md -------------------------------------------------------------------------------- /uptime@vatanuki.kun/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/info.json -------------------------------------------------------------------------------- /uptime@vatanuki.kun/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/readme.md -------------------------------------------------------------------------------- /uptime@vatanuki.kun/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/screenshot.png -------------------------------------------------------------------------------- /uptime@vatanuki.kun/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/screenshot2.png -------------------------------------------------------------------------------- /uptime@vatanuki.kun/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/screenshot3.png -------------------------------------------------------------------------------- /uptime@vatanuki.kun/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/screenshot4.png -------------------------------------------------------------------------------- /uptime@vatanuki.kun/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/uptime@vatanuki.kun/screenshot5.png -------------------------------------------------------------------------------- /validate-spice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/validate-spice -------------------------------------------------------------------------------- /vboxlauncher@mockturtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vboxlauncher@mockturtl/README.md -------------------------------------------------------------------------------- /vboxlauncher@mockturtl/info.json: -------------------------------------------------------------------------------- 1 | {"author": "mockturtl"} -------------------------------------------------------------------------------- /vboxlauncher@mockturtl/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vboxlauncher@mockturtl/screenshot.png -------------------------------------------------------------------------------- /vnstat@linuxmint.com/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vnstat@linuxmint.com/CHANGELOG.md -------------------------------------------------------------------------------- /vnstat@linuxmint.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vnstat@linuxmint.com/README.md -------------------------------------------------------------------------------- /vnstat@linuxmint.com/files/vnstat@linuxmint.com/4.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /vnstat@linuxmint.com/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vnstat@linuxmint.com/info.json -------------------------------------------------------------------------------- /vnstat@linuxmint.com/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vnstat@linuxmint.com/screenshot.png -------------------------------------------------------------------------------- /vpnLookOut@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vpnLookOut@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /vpnLookOut@claudiux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vpnLookOut@claudiux/README.md -------------------------------------------------------------------------------- /vpnLookOut@claudiux/files/vpnLookOut@claudiux/2.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /vpnLookOut@claudiux/files/vpnLookOut@claudiux/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /vpnLookOut@claudiux/files/vpnLookOut@claudiux/4.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /vpnLookOut@claudiux/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vpnLookOut@claudiux/info.json -------------------------------------------------------------------------------- /vpnLookOut@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/vpnLookOut@claudiux/screenshot.png -------------------------------------------------------------------------------- /wakapidisplay@babico/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/wakapidisplay@babico/README.md -------------------------------------------------------------------------------- /wakapidisplay@babico/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "babico" 3 | } -------------------------------------------------------------------------------- /wakatimedisplay@inventor96/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "inventor96" 3 | } -------------------------------------------------------------------------------- /wallpaper-slideshow@amaan-mohib/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "amaan-mohib" 3 | } 4 | -------------------------------------------------------------------------------- /weather@mockturtl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/.editorconfig -------------------------------------------------------------------------------- /weather@mockturtl/.gitignore: -------------------------------------------------------------------------------- 1 | venv/ -------------------------------------------------------------------------------- /weather@mockturtl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/CHANGELOG.md -------------------------------------------------------------------------------- /weather@mockturtl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/README.md -------------------------------------------------------------------------------- /weather@mockturtl/TASKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/TASKS.md -------------------------------------------------------------------------------- /weather@mockturtl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/build.sh -------------------------------------------------------------------------------- /weather@mockturtl/build3_0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/build3_0.sh -------------------------------------------------------------------------------- /weather@mockturtl/build_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/build_guide.md -------------------------------------------------------------------------------- /weather@mockturtl/files/weather@mockturtl/3.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /weather@mockturtl/files/weather@mockturtl/3.8/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /weather@mockturtl/files/weather@mockturtl/arrow-icons/licence.txt: -------------------------------------------------------------------------------- 1 | Icons made by Attila Greguss (floyd0122@gmail.com), licence MIT. -------------------------------------------------------------------------------- /weather@mockturtl/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/info.json -------------------------------------------------------------------------------- /weather@mockturtl/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/install.sh -------------------------------------------------------------------------------- /weather@mockturtl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/package.json -------------------------------------------------------------------------------- /weather@mockturtl/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/screenshot.png -------------------------------------------------------------------------------- /weather@mockturtl/src/3_0/ipApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_0/ipApi.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_0/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_0/utils.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_0/yahoo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_0/yahoo.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_8/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_8/loop.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_8/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_8/main.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_8/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_8/types.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_8/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_8/ui.ts -------------------------------------------------------------------------------- /weather@mockturtl/src/3_8/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/src/3_8/utils.ts -------------------------------------------------------------------------------- /weather@mockturtl/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/weather@mockturtl/test.sh -------------------------------------------------------------------------------- /window-list@sangorys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/window-list@sangorys/README.md -------------------------------------------------------------------------------- /window-list@sangorys/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/window-list@sangorys/info.json -------------------------------------------------------------------------------- /window-list@sangorys/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/window-list@sangorys/package.json -------------------------------------------------------------------------------- /window-list@zeripath.sdf-eu.org/info.json: -------------------------------------------------------------------------------- 1 | {"author": "zeripath"} 2 | -------------------------------------------------------------------------------- /windowlist@cobinja.de/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/windowlist@cobinja.de/CHANGELOG.md -------------------------------------------------------------------------------- /windowlist@cobinja.de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/windowlist@cobinja.de/README.md -------------------------------------------------------------------------------- /windowlist@cobinja.de/files/windowlist@cobinja.de/3.2/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /windowlist@cobinja.de/files/windowlist@cobinja.de/4.0/icon.png: -------------------------------------------------------------------------------- 1 | ../icon.png -------------------------------------------------------------------------------- /windowlist@cobinja.de/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/windowlist@cobinja.de/info.json -------------------------------------------------------------------------------- /wine-utils@elblake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/wine-utils@elblake/LICENSE -------------------------------------------------------------------------------- /wine-utils@elblake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/wine-utils@elblake/README.md -------------------------------------------------------------------------------- /wine-utils@elblake/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "elblake" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /wine-utils@elblake/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/wine-utils@elblake/screenshot.png -------------------------------------------------------------------------------- /wireguard@nicoulaj.net/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/wireguard@nicoulaj.net/info.json -------------------------------------------------------------------------------- /workspace-grid@hernejj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/workspace-grid@hernejj/README.md -------------------------------------------------------------------------------- /workspace-grid@hernejj/info.json: -------------------------------------------------------------------------------- 1 | {"author": "hernejj"} 2 | -------------------------------------------------------------------------------- /workspace-name@willurd/info.json: -------------------------------------------------------------------------------- 1 | {"author": "willurd"} -------------------------------------------------------------------------------- /xampp-panel@backids99/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/xampp-panel@backids99/info.json -------------------------------------------------------------------------------- /xsession@claudiux/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | files/xsession@claudiux/CHANGELOG.md -------------------------------------------------------------------------------- /xsession@claudiux/README.md: -------------------------------------------------------------------------------- 1 | files/xsession@claudiux/README.md -------------------------------------------------------------------------------- /xsession@claudiux/files/xsession@claudiux/icon.png: -------------------------------------------------------------------------------- 1 | icons/face-glasses.png -------------------------------------------------------------------------------- /xsession@claudiux/files/xsession@claudiux/icon.svg: -------------------------------------------------------------------------------- 1 | icons/face-glasses-symbolic.svg -------------------------------------------------------------------------------- /xsession@claudiux/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/xsession@claudiux/icon.svg -------------------------------------------------------------------------------- /xsession@claudiux/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "claudiux" 3 | } 4 | -------------------------------------------------------------------------------- /xsession@claudiux/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/cinnamon-spices-applets/HEAD/xsession@claudiux/screenshot.png --------------------------------------------------------------------------------