├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ └── validate-desktop-files.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── cosmic-app-list ├── Cargo.toml ├── cosmic-app-list-config │ ├── Cargo.toml │ └── src │ │ ├── config.ron │ │ └── lib.rs ├── data │ ├── com.system76.CosmicAppList.desktop │ ├── default_schema │ │ └── com.system76.CosmicAppList │ │ │ └── v1 │ │ │ ├── favorites │ │ │ └── filter_top_levels │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppList.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_app_list.ftl │ ├── ar │ │ └── cosmic_app_list.ftl │ ├── be │ │ └── cosmic_app_list.ftl │ ├── bg │ │ └── cosmic_app_list.ftl │ ├── ca │ │ └── cosmic_app_list.ftl │ ├── cs │ │ └── cosmic_app_list.ftl │ ├── da │ │ └── cosmic_app_list.ftl │ ├── de │ │ └── cosmic_app_list.ftl │ ├── el │ │ └── cosmic_app_list.ftl │ ├── en-GB │ │ └── cosmic_app_list.ftl │ ├── en │ │ └── cosmic_app_list.ftl │ ├── eo │ │ └── cosmic_app_list.ftl │ ├── es-419 │ │ └── cosmic_app_list.ftl │ ├── es-ES │ │ └── cosmic_app_list.ftl │ ├── es-MX │ │ └── cosmic_app_list.ftl │ ├── et │ │ └── cosmic_app_list.ftl │ ├── fa │ │ └── cosmic_app_list.ftl │ ├── fi │ │ └── cosmic_app_list.ftl │ ├── fr │ │ └── cosmic_app_list.ftl │ ├── frk │ │ └── cosmic_app_list.ftl │ ├── fy │ │ └── cosmic_app_list.ftl │ ├── ga │ │ └── cosmic_app_list.ftl │ ├── gd │ │ └── cosmic_app_list.ftl │ ├── gu │ │ └── cosmic_app_list.ftl │ ├── he │ │ └── cosmic_app_list.ftl │ ├── hi │ │ └── cosmic_app_list.ftl │ ├── hr │ │ └── cosmic_app_list.ftl │ ├── hu │ │ └── cosmic_app_list.ftl │ ├── id │ │ └── cosmic_app_list.ftl │ ├── ie │ │ └── cosmic_app_list.ftl │ ├── is │ │ └── cosmic_app_list.ftl │ ├── it │ │ └── cosmic_app_list.ftl │ ├── ja │ │ └── cosmic_app_list.ftl │ ├── jv │ │ └── cosmic_app_list.ftl │ ├── kmr │ │ └── cosmic_app_list.ftl │ ├── kn │ │ └── cosmic_app_list.ftl │ ├── ko │ │ └── cosmic_app_list.ftl │ ├── li │ │ └── cosmic_app_list.ftl │ ├── lt │ │ └── cosmic_app_list.ftl │ ├── nb │ │ └── cosmic_app_list.ftl │ ├── nl │ │ └── cosmic_app_list.ftl │ ├── nn │ │ └── cosmic_app_list.ftl │ ├── pl │ │ └── cosmic_app_list.ftl │ ├── pt-BR │ │ └── cosmic_app_list.ftl │ ├── pt │ │ └── cosmic_app_list.ftl │ ├── ro │ │ └── cosmic_app_list.ftl │ ├── ru │ │ └── cosmic_app_list.ftl │ ├── sk │ │ └── cosmic_app_list.ftl │ ├── sr-Cyrl │ │ └── cosmic_app_list.ftl │ ├── sr-Latn │ │ └── cosmic_app_list.ftl │ ├── sr │ │ └── cosmic_app_list.ftl │ ├── sv │ │ └── cosmic_app_list.ftl │ ├── ta │ │ └── cosmic_app_list.ftl │ ├── th │ │ └── cosmic_app_list.ftl │ ├── tr │ │ └── cosmic_app_list.ftl │ ├── uk │ │ └── cosmic_app_list.ftl │ ├── vi │ │ └── cosmic_app_list.ftl │ ├── zh-CN │ │ └── cosmic_app_list.ftl │ └── zh-TW │ │ └── cosmic_app_list.ftl └── src │ ├── app.rs │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ ├── utils.rs │ ├── wayland_handler.rs │ └── wayland_subscription.rs ├── cosmic-applet-a11y ├── Cargo.toml ├── data │ └── com.system76.CosmicAppletA11y.desktop ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_a11y.ftl │ ├── ar │ │ └── cosmic_applet_a11y.ftl │ ├── be │ │ └── cosmic_applet_a11y.ftl │ ├── bg │ │ └── cosmic_applet_a11y.ftl │ ├── ca │ │ └── cosmic_applet_a11y.ftl │ ├── cs │ │ └── cosmic_applet_a11y.ftl │ ├── da │ │ └── cosmic_applet_a11y.ftl │ ├── de │ │ └── cosmic_applet_a11y.ftl │ ├── el │ │ └── cosmic_applet_a11y.ftl │ ├── en-GB │ │ └── cosmic_applet_a11y.ftl │ ├── en │ │ └── cosmic_applet_a11y.ftl │ ├── eo │ │ └── cosmic_applet_a11y.ftl │ ├── es-419 │ │ └── cosmic_applet_a11y.ftl │ ├── es-MX │ │ └── cosmic_applet_a11y.ftl │ ├── es │ │ └── cosmic_applet_a11y.ftl │ ├── et │ │ └── cosmic_applet_a11y.ftl │ ├── fa │ │ └── cosmic_applet_a11y.ftl │ ├── fi │ │ └── cosmic_applet_a11y.ftl │ ├── fr │ │ └── cosmic_applet_a11y.ftl │ ├── frk │ │ └── cosmic_applet_a11y.ftl │ ├── fy │ │ └── cosmic_applet_a11y.ftl │ ├── ga │ │ └── cosmic_applet_a11y.ftl │ ├── gd │ │ └── cosmic_applet_a11y.ftl │ ├── gu │ │ └── cosmic_applet_a11y.ftl │ ├── he │ │ └── cosmic_applet_a11y.ftl │ ├── hi │ │ └── cosmic_applet_a11y.ftl │ ├── hr │ │ └── cosmic_applet_a11y.ftl │ ├── hu │ │ └── cosmic_applet_a11y.ftl │ ├── id │ │ └── cosmic_applet_a11y.ftl │ ├── ie │ │ └── cosmic_applet_a11y.ftl │ ├── is │ │ └── cosmic_applet_a11y.ftl │ ├── it │ │ └── cosmic_applet_a11y.ftl │ ├── ja │ │ └── cosmic_applet_a11y.ftl │ ├── jv │ │ └── cosmic_applet_a11y.ftl │ ├── kmr │ │ └── cosmic_applet_a11y.ftl │ ├── kn │ │ └── cosmic_applet_a11y.ftl │ ├── ko │ │ └── cosmic_applet_a11y.ftl │ ├── li │ │ └── cosmic_applet_a11y.ftl │ ├── lt │ │ └── cosmic_applet_a11y.ftl │ ├── nb │ │ └── cosmic_applet_a11y.ftl │ ├── nl │ │ └── cosmic_applet_a11y.ftl │ ├── nn │ │ └── cosmic_applet_a11y.ftl │ ├── pl │ │ └── cosmic_applet_a11y.ftl │ ├── pt-BR │ │ └── cosmic_applet_a11y.ftl │ ├── pt │ │ └── cosmic_applet_a11y.ftl │ ├── ro │ │ └── cosmic_applet_a11y.ftl │ ├── ru │ │ └── cosmic_applet_a11y.ftl │ ├── sk │ │ └── cosmic_applet_a11y.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_a11y.ftl │ ├── sr-Latn │ │ └── cosmic_applet_a11y.ftl │ ├── sr │ │ └── cosmic_applet_a11y.ftl │ ├── sv │ │ └── cosmic_applet_a11y.ftl │ ├── ta │ │ └── cosmic_applet_a11y.ftl │ ├── th │ │ └── cosmic_applet_a11y.ftl │ ├── tr │ │ └── cosmic_applet_a11y.ftl │ ├── uk │ │ ├── cosmic_app_list.ftl │ │ └── cosmic_applet_a11y.ftl │ ├── vi │ │ └── cosmic_applet_a11y.ftl │ ├── zh-CN │ │ └── cosmic_applet_a11y.ftl │ └── zh-TW │ │ └── cosmic_applet_a11y.ftl └── src │ ├── app.rs │ ├── backend │ ├── mod.rs │ └── wayland │ │ └── mod.rs │ ├── lib.rs │ ├── localize.rs │ └── main.rs ├── cosmic-applet-audio ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletAudio.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletAudio-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_audio.ftl │ ├── ar │ │ └── cosmic_applet_audio.ftl │ ├── be │ │ └── cosmic_applet_audio.ftl │ ├── bg │ │ └── cosmic_applet_audio.ftl │ ├── ca │ │ └── cosmic_applet_audio.ftl │ ├── cs │ │ └── cosmic_applet_audio.ftl │ ├── da │ │ └── cosmic_applet_audio.ftl │ ├── de │ │ └── cosmic_applet_audio.ftl │ ├── el │ │ └── cosmic_applet_audio.ftl │ ├── en-GB │ │ └── cosmic_applet_audio.ftl │ ├── en │ │ └── cosmic_applet_audio.ftl │ ├── eo │ │ └── cosmic_applet_audio.ftl │ ├── es-419 │ │ └── cosmic_applet_audio.ftl │ ├── es-ES │ │ └── cosmic_applet_audio.ftl │ ├── es-MX │ │ └── cosmic_applet_audio.ftl │ ├── et │ │ └── cosmic_applet_audio.ftl │ ├── fa │ │ └── cosmic_applet_audio.ftl │ ├── fi │ │ └── cosmic_applet_audio.ftl │ ├── fr │ │ └── cosmic_applet_audio.ftl │ ├── frk │ │ └── cosmic_applet_audio.ftl │ ├── fy │ │ └── cosmic_applet_audio.ftl │ ├── ga │ │ └── cosmic_applet_audio.ftl │ ├── gd │ │ └── cosmic_applet_audio.ftl │ ├── gu │ │ └── cosmic_applet_audio.ftl │ ├── he │ │ └── cosmic_applet_audio.ftl │ ├── hi │ │ └── cosmic_applet_audio.ftl │ ├── hr │ │ └── cosmic_applet_audio.ftl │ ├── hu │ │ └── cosmic_applet_audio.ftl │ ├── id │ │ └── cosmic_applet_audio.ftl │ ├── ie │ │ └── cosmic_applet_audio.ftl │ ├── is │ │ └── cosmic_applet_audio.ftl │ ├── it │ │ └── cosmic_applet_audio.ftl │ ├── ja │ │ └── cosmic_applet_audio.ftl │ ├── jv │ │ └── cosmic_applet_audio.ftl │ ├── kmr │ │ └── cosmic_applet_audio.ftl │ ├── kn │ │ └── cosmic_applet_audio.ftl │ ├── ko │ │ └── cosmic_applet_audio.ftl │ ├── li │ │ └── cosmic_applet_audio.ftl │ ├── lt │ │ └── cosmic_applet_audio.ftl │ ├── nb │ │ └── cosmic_applet_audio.ftl │ ├── nl │ │ └── cosmic_applet_audio.ftl │ ├── nn │ │ └── cosmic_applet_audio.ftl │ ├── pl │ │ └── cosmic_applet_audio.ftl │ ├── pt-BR │ │ └── cosmic_applet_audio.ftl │ ├── pt │ │ └── cosmic_applet_audio.ftl │ ├── ro │ │ └── cosmic_applet_audio.ftl │ ├── ru │ │ └── cosmic_applet_audio.ftl │ ├── sk │ │ └── cosmic_applet_audio.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_audio.ftl │ ├── sr-Latn │ │ └── cosmic_applet_audio.ftl │ ├── sr │ │ └── cosmic_applet_audio.ftl │ ├── sv │ │ └── cosmic_applet_audio.ftl │ ├── ta │ │ └── cosmic_applet_audio.ftl │ ├── th │ │ └── cosmic_applet_audio.ftl │ ├── tr │ │ └── cosmic_applet_audio.ftl │ ├── uk │ │ └── cosmic_applet_audio.ftl │ ├── vi │ │ └── cosmic_applet_audio.ftl │ ├── zh-CN │ │ └── cosmic_applet_audio.ftl │ └── zh-TW │ │ └── cosmic_applet_audio.ftl └── src │ ├── config.rs │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ ├── mouse_area.rs │ └── mpris_subscription.rs ├── cosmic-applet-battery ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletBattery.desktop │ └── icons │ │ └── scalable │ │ ├── apps │ │ └── com.system76.CosmicAppletBattery-symbolic.svg │ │ └── status │ │ ├── cosmic-applet-battery-display-brightness-high-symbolic.svg │ │ ├── cosmic-applet-battery-display-brightness-low-symbolic.svg │ │ ├── cosmic-applet-battery-display-brightness-medium-symbolic.svg │ │ ├── cosmic-applet-battery-display-brightness-off-symbolic.svg │ │ ├── cosmic-applet-battery-level-0-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-0-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-0-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-0-symbolic.svg │ │ ├── cosmic-applet-battery-level-10-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-10-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-10-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-10-symbolic.svg │ │ ├── cosmic-applet-battery-level-100-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-100-symbolic.svg │ │ ├── cosmic-applet-battery-level-20-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-20-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-20-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-20-symbolic.svg │ │ ├── cosmic-applet-battery-level-35-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-35-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-35-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-35-symbolic.svg │ │ ├── cosmic-applet-battery-level-5-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-5-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-5-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-5-symbolic.svg │ │ ├── cosmic-applet-battery-level-50-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-50-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-50-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-50-symbolic.svg │ │ ├── cosmic-applet-battery-level-65-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-65-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-65-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-65-symbolic.svg │ │ ├── cosmic-applet-battery-level-80-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-80-limited-charging-symbolic.svg │ │ ├── cosmic-applet-battery-level-80-limited-symbolic.svg │ │ ├── cosmic-applet-battery-level-80-symbolic.svg │ │ ├── cosmic-applet-battery-level-90-charging-symbolic.svg │ │ └── cosmic-applet-battery-level-90-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_battery.ftl │ ├── ar │ │ └── cosmic_applet_battery.ftl │ ├── be │ │ └── cosmic_applet_battery.ftl │ ├── bg │ │ └── cosmic_applet_battery.ftl │ ├── ca │ │ └── cosmic_applet_battery.ftl │ ├── cs │ │ └── cosmic_applet_battery.ftl │ ├── da │ │ └── cosmic_applet_battery.ftl │ ├── de │ │ └── cosmic_applet_battery.ftl │ ├── el │ │ └── cosmic_applet_battery.ftl │ ├── en-GB │ │ └── cosmic_applet_battery.ftl │ ├── en │ │ └── cosmic_applet_battery.ftl │ ├── eo │ │ └── cosmic_applet_battery.ftl │ ├── es-419 │ │ └── cosmic_applet_battery.ftl │ ├── es-ES │ │ └── cosmic_applet_battery.ftl │ ├── es-MX │ │ └── cosmic_applet_battery.ftl │ ├── et │ │ └── cosmic_applet_battery.ftl │ ├── fa │ │ └── cosmic_applet_battery.ftl │ ├── fi │ │ └── cosmic_applet_battery.ftl │ ├── fr │ │ └── cosmic_applet_battery.ftl │ ├── frk │ │ └── cosmic_applet_battery.ftl │ ├── fy │ │ └── cosmic_applet_battery.ftl │ ├── ga │ │ └── cosmic_applet_battery.ftl │ ├── gd │ │ └── cosmic_applet_battery.ftl │ ├── gu │ │ └── cosmic_applet_battery.ftl │ ├── he │ │ └── cosmic_applet_battery.ftl │ ├── hi │ │ └── cosmic_applet_battery.ftl │ ├── hr │ │ └── cosmic_applet_battery.ftl │ ├── hu │ │ └── cosmic_applet_battery.ftl │ ├── id │ │ └── cosmic_applet_battery.ftl │ ├── ie │ │ └── cosmic_applet_battery.ftl │ ├── is │ │ └── cosmic_applet_battery.ftl │ ├── it │ │ └── cosmic_applet_battery.ftl │ ├── ja │ │ └── cosmic_applet_battery.ftl │ ├── jv │ │ └── cosmic_applet_battery.ftl │ ├── kmr │ │ └── cosmic_applet_battery.ftl │ ├── kn │ │ └── cosmic_applet_battery.ftl │ ├── ko │ │ └── cosmic_applet_battery.ftl │ ├── li │ │ └── cosmic_applet_battery.ftl │ ├── lt │ │ └── cosmic_applet_battery.ftl │ ├── nb │ │ └── cosmic_applet_battery.ftl │ ├── nl │ │ └── cosmic_applet_battery.ftl │ ├── nn │ │ └── cosmic_applet_battery.ftl │ ├── pl │ │ └── cosmic_applet_battery.ftl │ ├── pt-BR │ │ └── cosmic_applet_battery.ftl │ ├── pt │ │ └── cosmic_applet_battery.ftl │ ├── ro │ │ └── cosmic_applet_battery.ftl │ ├── ru │ │ └── cosmic_applet_battery.ftl │ ├── sk │ │ └── cosmic_applet_battery.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_battery.ftl │ ├── sr-Latn │ │ └── cosmic_applet_battery.ftl │ ├── sr │ │ └── cosmic_applet_battery.ftl │ ├── sv │ │ └── cosmic_applet_battery.ftl │ ├── ta │ │ └── cosmic_applet_battery.ftl │ ├── th │ │ └── cosmic_applet_battery.ftl │ ├── tr │ │ └── cosmic_applet_battery.ftl │ ├── uk │ │ └── cosmic_applet_battery.ftl │ ├── vi │ │ └── cosmic_applet_battery.ftl │ ├── zh-CN │ │ └── cosmic_applet_battery.ftl │ └── zh-TW │ │ └── cosmic_applet_battery.ftl └── src │ ├── app.rs │ ├── backend │ ├── mod.rs │ ├── power_daemon.rs │ └── power_profiles.rs │ ├── config.rs │ ├── dgpu.rs │ ├── lib.rs │ ├── localize.rs │ └── main.rs ├── cosmic-applet-bluetooth ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletBluetooth.desktop │ └── icons │ │ └── scalable │ │ ├── apps │ │ └── com.system76.CosmicAppletBluetooth-symbolic.svg │ │ └── status │ │ ├── cosmic-applet-bluetooth-active-symbolic.svg │ │ └── cosmic-applet-bluetooth-disabled-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_bluetooth.ftl │ ├── ar │ │ └── cosmic_applet_bluetooth.ftl │ ├── be │ │ └── cosmic_applet_bluetooth.ftl │ ├── bg │ │ └── cosmic_applet_bluetooth.ftl │ ├── ca │ │ └── cosmic_applet_bluetooth.ftl │ ├── cs │ │ └── cosmic_applet_bluetooth.ftl │ ├── da │ │ └── cosmic_applet_bluetooth.ftl │ ├── de │ │ └── cosmic_applet_bluetooth.ftl │ ├── el │ │ └── cosmic_applet_bluetooth.ftl │ ├── en-GB │ │ └── cosmic_applet_bluetooth.ftl │ ├── en │ │ └── cosmic_applet_bluetooth.ftl │ ├── eo │ │ └── cosmic_applet_bluetooth.ftl │ ├── es-419 │ │ └── cosmic_applet_bluetooth.ftl │ ├── es-ES │ │ └── cosmic_applet_bluetooth.ftl │ ├── es-MX │ │ └── cosmic_applet_bluetooth.ftl │ ├── et │ │ └── cosmic_applet_bluetooth.ftl │ ├── fa │ │ └── cosmic_applet_bluetooth.ftl │ ├── fi │ │ └── cosmic_applet_bluetooth.ftl │ ├── fr │ │ └── cosmic_applet_bluetooth.ftl │ ├── frk │ │ └── cosmic_applet_bluetooth.ftl │ ├── fy │ │ └── cosmic_applet_bluetooth.ftl │ ├── ga │ │ └── cosmic_applet_bluetooth.ftl │ ├── gd │ │ └── cosmic_applet_bluetooth.ftl │ ├── gu │ │ └── cosmic_applet_bluetooth.ftl │ ├── he │ │ └── cosmic_applet_bluetooth.ftl │ ├── hi │ │ └── cosmic_applet_bluetooth.ftl │ ├── hr │ │ └── cosmic_applet_bluetooth.ftl │ ├── hu │ │ └── cosmic_applet_bluetooth.ftl │ ├── id │ │ └── cosmic_applet_bluetooth.ftl │ ├── ie │ │ └── cosmic_applet_bluetooth.ftl │ ├── is │ │ └── cosmic_applet_bluetooth.ftl │ ├── it │ │ └── cosmic_applet_bluetooth.ftl │ ├── ja │ │ └── cosmic_applet_bluetooth.ftl │ ├── jv │ │ └── cosmic_applet_bluetooth.ftl │ ├── kmr │ │ └── cosmic_applet_bluetooth.ftl │ ├── kn │ │ └── cosmic_applet_bluetooth.ftl │ ├── ko │ │ └── cosmic_applet_bluetooth.ftl │ ├── li │ │ └── cosmic_applet_bluetooth.ftl │ ├── lt │ │ └── cosmic_applet_bluetooth.ftl │ ├── nb │ │ └── cosmic_applet_bluetooth.ftl │ ├── nl │ │ └── cosmic_applet_bluetooth.ftl │ ├── nn │ │ └── cosmic_applet_bluetooth.ftl │ ├── pl │ │ └── cosmic_applet_bluetooth.ftl │ ├── pt-BR │ │ └── cosmic_applet_bluetooth.ftl │ ├── pt │ │ └── cosmic_applet_bluetooth.ftl │ ├── ro │ │ └── cosmic_applet_bluetooth.ftl │ ├── ru │ │ └── cosmic_applet_bluetooth.ftl │ ├── sk │ │ └── cosmic_applet_bluetooth.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_bluetooth.ftl │ ├── sr-Latn │ │ └── cosmic_applet_bluetooth.ftl │ ├── sr │ │ └── cosmic_applet_bluetooth.ftl │ ├── sv │ │ └── cosmic_applet_bluetooth.ftl │ ├── ta │ │ └── cosmic_applet_bluetooth.ftl │ ├── th │ │ └── cosmic_applet_bluetooth.ftl │ ├── tr │ │ └── cosmic_applet_bluetooth.ftl │ ├── uk │ │ └── cosmic_applet_bluetooth.ftl │ ├── vi │ │ └── cosmic_applet_bluetooth.ftl │ ├── zh-CN │ │ └── cosmic_applet_bluetooth.ftl │ └── zh-TW │ │ └── cosmic_applet_bluetooth.ftl └── src │ ├── app.rs │ ├── bluetooth.rs │ ├── config.rs │ ├── lib.rs │ ├── localize.rs │ └── main.rs ├── cosmic-applet-input-sources ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletInputSources.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletInputSources-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_input_sources.ftl │ ├── ar │ │ └── cosmic_applet_input_sources.ftl │ ├── be │ │ └── cosmic_applet_input_sources.ftl │ ├── bg │ │ └── cosmic_applet_input_sources.ftl │ ├── ca │ │ └── cosmic_applet_input_sources.ftl │ ├── cs │ │ └── cosmic_applet_input_sources.ftl │ ├── da │ │ └── cosmic_applet_input_sources.ftl │ ├── de │ │ └── cosmic_applet_input_sources.ftl │ ├── el │ │ └── cosmic_applet_input_sources.ftl │ ├── en-GB │ │ └── cosmic_applet_input_sources.ftl │ ├── en │ │ └── cosmic_applet_input_sources.ftl │ ├── eo │ │ └── cosmic_applet_input_sources.ftl │ ├── es-419 │ │ └── cosmic_applet_input_sources.ftl │ ├── es-MX │ │ └── cosmic_applet_input_sources.ftl │ ├── es │ │ └── cosmic_applet_input_sources.ftl │ ├── et │ │ └── cosmic_applet_input_sources.ftl │ ├── fa │ │ └── cosmic_applet_input_sources.ftl │ ├── fi │ │ └── cosmic_applet_input_sources.ftl │ ├── fr │ │ └── cosmic_applet_input_sources.ftl │ ├── frk │ │ └── cosmic_applet_input_sources.ftl │ ├── fy │ │ └── cosmic_applet_input_sources.ftl │ ├── ga │ │ └── cosmic_applet_input_sources.ftl │ ├── gd │ │ └── cosmic_applet_input_sources.ftl │ ├── gu │ │ └── cosmic_applet_input_sources.ftl │ ├── he │ │ └── cosmic_applet_input_sources.ftl │ ├── hi │ │ └── cosmic_applet_input_sources.ftl │ ├── hr │ │ └── cosmic_applet_input_sources.ftl │ ├── hu │ │ └── cosmic_applet_input_sources.ftl │ ├── id │ │ └── cosmic_applet_input_sources.ftl │ ├── ie │ │ └── cosmic_applet_input_sources.ftl │ ├── is │ │ └── cosmic_applet_input_sources.ftl │ ├── it │ │ └── cosmic_applet_input_sources.ftl │ ├── ja │ │ └── cosmic_applet_input_sources.ftl │ ├── jv │ │ └── cosmic_applet_input_sources.ftl │ ├── kmr │ │ └── cosmic_applet_input_sources.ftl │ ├── kn │ │ └── cosmic_applet_input_sources.ftl │ ├── ko │ │ └── cosmic_applet_input_sources.ftl │ ├── li │ │ └── cosmic_applet_input_sources.ftl │ ├── lt │ │ └── cosmic_applet_input_sources.ftl │ ├── nb │ │ └── cosmic_applet_input_sources.ftl │ ├── nl │ │ └── cosmic_applet_input_sources.ftl │ ├── nn │ │ └── cosmic_applet_input_sources.ftl │ ├── pl │ │ └── cosmic_applet_input_sources.ftl │ ├── pt-BR │ │ └── cosmic_applet_input_sources.ftl │ ├── pt │ │ └── cosmic_applet_input_sources.ftl │ ├── ro │ │ └── cosmic_applet_input_sources.ftl │ ├── ru │ │ └── cosmic_applet_input_sources.ftl │ ├── sk │ │ └── cosmic_applet_input_sources.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_input_sources.ftl │ ├── sr-Latn │ │ └── cosmic_applet_input_sources.ftl │ ├── sr │ │ └── cosmic_applet_input_sources.ftl │ ├── sv │ │ └── cosmic_applet_input_sources.ftl │ ├── ta │ │ └── cosmic_applet_input_sources.ftl │ ├── th │ │ └── cosmic_applet_input_sources.ftl │ ├── tr │ │ └── cosmic_applet_input_sources.ftl │ ├── uk │ │ └── cosmic_applet_input_sources.ftl │ ├── vi │ │ └── cosmic_applet_input_sources.ftl │ ├── zh-CN │ │ └── cosmic_applet_input_sources.ftl │ └── zh-TW │ │ └── cosmic_applet_input_sources.ftl └── src │ ├── lib.rs │ ├── localize.rs │ └── main.rs ├── cosmic-applet-minimize ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletMinimize.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletMinimize.svg ├── i18n.toml ├── i18n │ ├── ar │ │ └── cosmic_applet_minimize.ftl │ ├── en │ │ └── cosmic_applet_minimize.ftl │ └── zh-TW │ │ └── cosmic_applet_minimize.ftl └── src │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ ├── wayland_handler.rs │ ├── wayland_subscription.rs │ └── window_image.rs ├── cosmic-applet-network ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletNetwork.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletNetwork-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_network.ftl │ ├── ar │ │ └── cosmic_applet_network.ftl │ ├── be │ │ └── cosmic_applet_network.ftl │ ├── bg │ │ └── cosmic_applet_network.ftl │ ├── ca │ │ └── cosmic_applet_network.ftl │ ├── cs │ │ └── cosmic_applet_network.ftl │ ├── da │ │ └── cosmic_applet_network.ftl │ ├── de │ │ └── cosmic_applet_network.ftl │ ├── el │ │ └── cosmic_applet_network.ftl │ ├── en-GB │ │ └── cosmic_applet_network.ftl │ ├── en │ │ └── cosmic_applet_network.ftl │ ├── eo │ │ └── cosmic_applet_network.ftl │ ├── es-419 │ │ └── cosmic_applet_network.ftl │ ├── es-ES │ │ └── cosmic_applet_network.ftl │ ├── es-MX │ │ └── cosmic_applet_network.ftl │ ├── et │ │ └── cosmic_applet_network.ftl │ ├── fa │ │ └── cosmic_applet_network.ftl │ ├── fi │ │ └── cosmic_applet_network.ftl │ ├── fr │ │ └── cosmic_applet_network.ftl │ ├── frk │ │ └── cosmic_applet_network.ftl │ ├── fy │ │ └── cosmic_applet_network.ftl │ ├── ga │ │ └── cosmic_applet_network.ftl │ ├── gd │ │ └── cosmic_applet_network.ftl │ ├── gu │ │ └── cosmic_applet_network.ftl │ ├── he │ │ └── cosmic_applet_network.ftl │ ├── hi │ │ └── cosmic_applet_network.ftl │ ├── hr │ │ └── cosmic_applet_network.ftl │ ├── hu │ │ └── cosmic_applet_network.ftl │ ├── id │ │ └── cosmic_applet_network.ftl │ ├── ie │ │ └── cosmic_applet_network.ftl │ ├── is │ │ └── cosmic_applet_network.ftl │ ├── it │ │ └── cosmic_applet_network.ftl │ ├── ja │ │ └── cosmic_applet_network.ftl │ ├── jv │ │ └── cosmic_applet_network.ftl │ ├── kmr │ │ └── cosmic_applet_network.ftl │ ├── kn │ │ └── cosmic_applet_network.ftl │ ├── ko │ │ └── cosmic_applet_network.ftl │ ├── li │ │ └── cosmic_applet_network.ftl │ ├── lt │ │ └── cosmic_applet_network.ftl │ ├── nb │ │ └── cosmic_applet_network.ftl │ ├── nl │ │ └── cosmic_applet_network.ftl │ ├── nn │ │ └── cosmic_applet_network.ftl │ ├── pl │ │ └── cosmic_applet_network.ftl │ ├── pt-BR │ │ └── cosmic_applet_network.ftl │ ├── pt │ │ └── cosmic_applet_network.ftl │ ├── ro │ │ └── cosmic_applet_network.ftl │ ├── ru │ │ └── cosmic_applet_network.ftl │ ├── sk │ │ └── cosmic_applet_network.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_network.ftl │ ├── sr-Latn │ │ └── cosmic_applet_network.ftl │ ├── sr │ │ └── cosmic_applet_network.ftl │ ├── sv │ │ └── cosmic_applet_network.ftl │ ├── ta │ │ └── cosmic_applet_network.ftl │ ├── th │ │ └── cosmic_applet_network.ftl │ ├── tr │ │ └── cosmic_applet_network.ftl │ ├── uk │ │ └── cosmic_applet_network.ftl │ ├── vi │ │ └── cosmic_applet_network.ftl │ ├── zh-CN │ │ └── cosmic_applet_network.ftl │ └── zh-TW │ │ └── cosmic_applet_network.ftl └── src │ ├── app.rs │ ├── config.rs │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ └── network_manager │ ├── active_conns.rs │ ├── available_vpns.rs │ ├── available_wifi.rs │ ├── current_networks.rs │ ├── devices.rs │ ├── hw_address.rs │ ├── mod.rs │ └── wireless_enabled.rs ├── cosmic-applet-notifications ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletNotifications.desktop │ └── icons │ │ └── scalable │ │ ├── apps │ │ └── com.system76.CosmicAppletNotifications-symbolic.svg │ │ └── status │ │ ├── cosmic-applet-notification-disabled-symbolic.svg │ │ ├── cosmic-applet-notification-new-symbolic.svg │ │ └── cosmic-applet-notification-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_notifications.ftl │ ├── ar │ │ └── cosmic_applet_notifications.ftl │ ├── be │ │ └── cosmic_applet_notifications.ftl │ ├── bg │ │ └── cosmic_applet_notifications.ftl │ ├── ca │ │ └── cosmic_applet_notifications.ftl │ ├── cs │ │ └── cosmic_applet_notifications.ftl │ ├── da │ │ └── cosmic_applet_notifications.ftl │ ├── de │ │ └── cosmic_applet_notifications.ftl │ ├── el │ │ └── cosmic_applet_notifications.ftl │ ├── en-GB │ │ └── cosmic_applet_notifications.ftl │ ├── en │ │ └── cosmic_applet_notifications.ftl │ ├── eo │ │ └── cosmic_applet_notifications.ftl │ ├── es-419 │ │ └── cosmic_applet_notifications.ftl │ ├── es-ES │ │ └── cosmic_applet_notifications │ ├── es-MX │ │ └── cosmic_applet_notifications.ftl │ ├── es │ │ └── cosmic_applet_notifications.ftl │ ├── et │ │ └── cosmic_applet_notifications.ftl │ ├── fa │ │ └── cosmic_applet_notifications.ftl │ ├── fi │ │ └── cosmic_applet_notifications.ftl │ ├── fr │ │ └── cosmic_applet_notifications.ftl │ ├── frk │ │ └── cosmic_applet_notifications.ftl │ ├── fy │ │ └── cosmic_applet_notifications.ftl │ ├── ga │ │ └── cosmic_applet_notifications.ftl │ ├── gd │ │ └── cosmic_applet_notifications.ftl │ ├── gu │ │ └── cosmic_applet_notifications.ftl │ ├── he │ │ └── cosmic_applet_notifications.ftl │ ├── hi │ │ └── cosmic_applet_notifications.ftl │ ├── hr │ │ └── cosmic_applet_notifications.ftl │ ├── hu │ │ └── cosmic_applet_notifications.ftl │ ├── id │ │ └── cosmic_applet_notifications.ftl │ ├── ie │ │ └── cosmic_applet_notifications.ftl │ ├── is │ │ └── cosmic_applet_notifications.ftl │ ├── it │ │ └── cosmic_applet_notifications.ftl │ ├── ja │ │ └── cosmic_applet_notifications.ftl │ ├── jv │ │ └── cosmic_applet_notifications.ftl │ ├── kmr │ │ └── cosmic_applet_notifications.ftl │ ├── kn │ │ └── cosmic_applet_notifications.ftl │ ├── ko │ │ └── cosmic_applet_notifications.ftl │ ├── li │ │ └── cosmic_applet_notifications.ftl │ ├── lt │ │ └── cosmic_applet_notifications.ftl │ ├── nb │ │ └── cosmic_applet_notifications.ftl │ ├── nl │ │ └── cosmic_applet_notifications.ftl │ ├── nn │ │ └── cosmic_applet_notifications.ftl │ ├── pl │ │ └── cosmic_applet_notifications.ftl │ ├── pt-BR │ │ └── cosmic_applet_notifications.ftl │ ├── pt │ │ └── cosmic_applet_notifications.ftl │ ├── ro │ │ └── cosmic_applet_notifications.ftl │ ├── ru │ │ └── cosmic_applet_notifications.ftl │ ├── sk │ │ └── cosmic_applet_notifications.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_notifications.ftl │ ├── sr-Latn │ │ └── cosmic_applet_notifications.ftl │ ├── sr │ │ └── cosmic_applet_notifications.ftl │ ├── sv │ │ └── cosmic_applet_notifications.ftl │ ├── ta │ │ └── cosmic_applet_notifications.ftl │ ├── th │ │ └── cosmic_applet_notifications.ftl │ ├── tr │ │ └── cosmic_applet_notifications.ftl │ ├── uk │ │ └── cosmic_applet_notifications.ftl │ ├── vi │ │ └── cosmic_applet_notifications.ftl │ ├── zh-CN │ │ └── cosmic_applet_notifications.ftl │ └── zh-TW │ │ └── cosmic_applet_notifications.ftl └── src │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ └── subscriptions │ ├── dbus.rs │ ├── freedesktop_proxy.rs │ ├── mod.rs │ └── notifications.rs ├── cosmic-applet-power ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletPower.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletPower-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_power.ftl │ ├── ar │ │ └── cosmic_applet_power.ftl │ ├── be │ │ └── cosmic_applet_power.ftl │ ├── bg │ │ └── cosmic_applet_power.ftl │ ├── ca │ │ └── cosmic_applet_power.ftl │ ├── cs │ │ └── cosmic_applet_power.ftl │ ├── da │ │ └── cosmic_applet_power.ftl │ ├── de │ │ └── cosmic_applet_power.ftl │ ├── el │ │ └── cosmic_applet_power.ftl │ ├── en-GB │ │ └── cosmic_applet_power.ftl │ ├── en │ │ └── cosmic_applet_power.ftl │ ├── eo │ │ └── cosmic_applet_power.ftl │ ├── es-419 │ │ └── cosmic_applet_power.ftl │ ├── es-ES │ │ └── cosmic_applet_power.ftl │ ├── es-MX │ │ └── cosmic_applet_power.ftl │ ├── et │ │ └── cosmic_applet_power.ftl │ ├── fa │ │ └── cosmic_applet_power.ftl │ ├── fi │ │ └── cosmic_applet_power.ftl │ ├── fr │ │ └── cosmic_applet_power.ftl │ ├── frk │ │ └── cosmic_applet_power.ftl │ ├── fy │ │ └── cosmic_applet_power.ftl │ ├── ga │ │ └── cosmic_applet_power.ftl │ ├── gd │ │ └── cosmic_applet_power.ftl │ ├── gu │ │ └── cosmic_applet_power.ftl │ ├── he │ │ └── cosmic_applet_power.ftl │ ├── hi │ │ └── cosmic_applet_power.ftl │ ├── hr │ │ └── cosmic_applet_power.ftl │ ├── hu │ │ └── cosmic_applet_power.ftl │ ├── id │ │ └── cosmic_applet_power.ftl │ ├── ie │ │ └── cosmic_applet_power.ftl │ ├── is │ │ └── cosmic_applet_power.ftl │ ├── it │ │ └── cosmic_applet_power.ftl │ ├── ja │ │ └── cosmic_applet_power.ftl │ ├── jv │ │ └── cosmic_applet_power.ftl │ ├── kmr │ │ └── cosmic_applet_power.ftl │ ├── kn │ │ └── cosmic_applet_power.ftl │ ├── ko │ │ └── cosmic_applet_power.ftl │ ├── li │ │ └── cosmic_applet_power.ftl │ ├── lt │ │ └── cosmic_applet_power.ftl │ ├── nb │ │ └── cosmic_applet_power.ftl │ ├── nl │ │ └── cosmic_applet_power.ftl │ ├── nn │ │ └── cosmic_applet_power.ftl │ ├── pl │ │ └── cosmic_applet_power.ftl │ ├── pt-BR │ │ └── cosmic_applet_power.ftl │ ├── pt │ │ └── cosmic_applet_power.ftl │ ├── ro │ │ └── cosmic_applet_power.ftl │ ├── ru │ │ └── cosmic_applet_power.ftl │ ├── sk │ │ └── cosmic_applet_power.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_power.ftl │ ├── sr-Latn │ │ └── cosmic_applet_power.ftl │ ├── sr │ │ └── cosmic_applet_power.ftl │ ├── sv │ │ └── cosmic_applet_power.ftl │ ├── ta │ │ └── cosmic_applet_power.ftl │ ├── th │ │ └── cosmic_applet_power.ftl │ ├── tr │ │ └── cosmic_applet_power.ftl │ ├── uk │ │ └── cosmic_applet_power.ftl │ ├── vi │ │ └── cosmic_applet_power.ftl │ ├── zh-CN │ │ └── cosmic_applet_power.ftl │ └── zh-TW │ │ └── cosmic_applet_power.ftl └── src │ ├── cosmic_session.rs │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ └── session_manager.rs ├── cosmic-applet-status-area ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletStatusArea.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletStatusArea.svg └── src │ ├── components │ ├── app.rs │ ├── mod.rs │ └── status_menu.rs │ ├── lib.rs │ ├── main.rs │ └── subscriptions │ ├── mod.rs │ ├── status_notifier_item.rs │ └── status_notifier_watcher │ ├── client.rs │ ├── mod.rs │ └── server.rs ├── cosmic-applet-tiling ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletTiling.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ ├── com.system76.CosmicAppletTiling-symbolic.svg │ │ ├── com.system76.CosmicAppletTiling.Off.svg │ │ └── com.system76.CosmicAppletTiling.On.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_tiling.ftl │ ├── ar │ │ └── cosmic_applet_tiling.ftl │ ├── be │ │ └── cosmic_applet_tiling.ftl │ ├── bg │ │ └── cosmic_applet_tiling.ftl │ ├── ca │ │ └── cosmic_applet_tiling.ftl │ ├── cs │ │ └── cosmic_applet_tiling.ftl │ ├── da │ │ └── cosmic_applet_tiling.ftl │ ├── de │ │ └── cosmic_applet_tiling.ftl │ ├── el │ │ └── cosmic_applet_tiling.ftl │ ├── en-GB │ │ └── cosmic_applet_tiling.ftl │ ├── en │ │ └── cosmic_applet_tiling.ftl │ ├── eo │ │ └── cosmic_applet_tiling.ftl │ ├── es-419 │ │ └── cosmic_applet_tiling.ftl │ ├── es-ES │ │ └── cosmic_applet_tiling.ftl │ ├── es-MX │ │ └── cosmic_applet_tiling.ftl │ ├── et │ │ └── cosmic_applet_tiling.ftl │ ├── fa │ │ └── cosmic_applet_tiling.ftl │ ├── fi │ │ └── cosmic_applet_tiling.ftl │ ├── fr │ │ └── cosmic_applet_tiling.ftl │ ├── frk │ │ └── cosmic_applet_tiling.ftl │ ├── fy │ │ └── cosmic_applet_tiling.ftl │ ├── ga │ │ └── cosmic_applet_tiling.ftl │ ├── gd │ │ └── cosmic_applet_tiling.ftl │ ├── gu │ │ └── cosmic_applet_tiling.ftl │ ├── he │ │ └── cosmic_applet_tiling.ftl │ ├── hi │ │ └── cosmic_applet_tiling.ftl │ ├── hr │ │ └── cosmic_applet_tiling.ftl │ ├── hu │ │ └── cosmic_applet_tiling.ftl │ ├── id │ │ └── cosmic_applet_tiling.ftl │ ├── ie │ │ └── cosmic_applet_tiling.ftl │ ├── is │ │ └── cosmic_applet_tiling.ftl │ ├── it │ │ └── cosmic_applet_tiling.ftl │ ├── ja │ │ └── cosmic_applet_tiling.ftl │ ├── jv │ │ └── cosmic_applet_tiling.ftl │ ├── kmr │ │ └── cosmic_applet_tiling.ftl │ ├── kn │ │ └── cosmic_applet_tiling.ftl │ ├── ko │ │ └── cosmic_applet_tiling.ftl │ ├── li │ │ └── cosmic_applet_tiling.ftl │ ├── lt │ │ └── cosmic_applet_tiling.ftl │ ├── nb │ │ └── cosmic_applet_tiling.ftl │ ├── nl │ │ └── cosmic_applet_tiling.ftl │ ├── nn │ │ └── cosmic_applet_tiling.ftl │ ├── pl │ │ └── cosmic_applet_tiling.ftl │ ├── pt-BR │ │ └── cosmic_applet_tiling.ftl │ ├── pt │ │ └── cosmic_applet_tiling.ftl │ ├── ro │ │ └── cosmic_applet_tiling.ftl │ ├── ru │ │ └── cosmic_applet_tiling.ftl │ ├── sk │ │ └── cosmic_applet_tiling.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_tiling.ftl │ ├── sr-Latn │ │ └── cosmic_applet_tiling.ftl │ ├── sr │ │ └── cosmic_applet_tiling.ftl │ ├── sv │ │ └── cosmic_applet_tiling.ftl │ ├── ta │ │ └── cosmic_applet_tiling.ftl │ ├── th │ │ └── cosmic_applet_tiling.ftl │ ├── tr │ │ └── cosmic_applet_tiling.ftl │ ├── uk │ │ └── cosmic_applet_tiling.ftl │ ├── vi │ │ └── cosmic_applet_tiling.ftl │ ├── zh-CN │ │ └── cosmic_applet_tiling.ftl │ └── zh-TW │ │ └── cosmic_applet_tiling.ftl └── src │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ ├── wayland.rs │ ├── wayland_subscription.rs │ └── window.rs ├── cosmic-applet-time ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletTime.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletTime-symbolic.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_time.ftl │ ├── ar │ │ └── cosmic_applet_time.ftl │ ├── be │ │ └── cosmic_applet_time.ftl │ ├── bg │ │ └── cosmic_applet_time.ftl │ ├── ca │ │ └── cosmic_applet_time.ftl │ ├── cs │ │ └── cosmic_applet_time.ftl │ ├── da │ │ └── cosmic_applet_time.ftl │ ├── de │ │ └── cosmic_applet_time.ftl │ ├── el │ │ └── cosmic_applet_time.ftl │ ├── en-GB │ │ └── cosmic_applet_time.ftl │ ├── en │ │ └── cosmic_applet_time.ftl │ ├── eo │ │ └── cosmic_applet_time.ftl │ ├── es-419 │ │ └── cosmic_applet_time.ftl │ ├── es-ES │ │ └── cosmic_applet_time.ftl │ ├── es-MX │ │ └── cosmic_applet_time.ftl │ ├── et │ │ └── cosmic_applet_time.ftl │ ├── fa │ │ └── cosmic_applet_time.ftl │ ├── fi │ │ └── cosmic_applet_time.ftl │ ├── fr │ │ └── cosmic_applet_time.ftl │ ├── frk │ │ └── cosmic_applet_time.ftl │ ├── fy │ │ └── cosmic_applet_time.ftl │ ├── ga │ │ └── cosmic_applet_time.ftl │ ├── gd │ │ └── cosmic_applet_time.ftl │ ├── gu │ │ └── cosmic_applet_time.ftl │ ├── he │ │ └── cosmic_applet_time.ftl │ ├── hi │ │ └── cosmic_applet_time.ftl │ ├── hr │ │ └── cosmic_applet_time.ftl │ ├── hu │ │ └── cosmic_applet_time.ftl │ ├── id │ │ └── cosmic_applet_time.ftl │ ├── ie │ │ └── cosmic_applet_time.ftl │ ├── is │ │ └── cosmic_applet_time.ftl │ ├── it │ │ └── cosmic_applet_time.ftl │ ├── ja │ │ └── cosmic_applet_time.ftl │ ├── jv │ │ └── cosmic_applet_time.ftl │ ├── kmr │ │ └── cosmic_applet_time.ftl │ ├── kn │ │ └── cosmic_applet_time.ftl │ ├── ko │ │ └── cosmic_applet_time.ftl │ ├── li │ │ └── cosmic_applet_time.ftl │ ├── lt │ │ └── cosmic_applet_time.ftl │ ├── nb │ │ └── cosmic_applet_time.ftl │ ├── nl │ │ └── cosmic_applet_time.ftl │ ├── nn │ │ └── cosmic_applet_time.ftl │ ├── pl │ │ └── cosmic_applet_time.ftl │ ├── pt-BR │ │ └── cosmic_applet_time.ftl │ ├── pt │ │ └── cosmic_applet_time.ftl │ ├── ro │ │ └── cosmic_applet_time.ftl │ ├── ru │ │ └── cosmic_applet_time.ftl │ ├── sk │ │ └── cosmic_applet_time.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_time.ftl │ ├── sr-Latn │ │ └── cosmic_applet_time.ftl │ ├── sr │ │ └── cosmic_applet_time.ftl │ ├── sv │ │ └── cosmic_applet_time.ftl │ ├── ta │ │ └── cosmic_applet_time.ftl │ ├── th │ │ └── cosmic_applet_time.ftl │ ├── tr │ │ └── cosmic_applet_time.ftl │ ├── uk │ │ └── cosmic_applet_time.ftl │ ├── vi │ │ └── cosmic_applet_time.ftl │ ├── zh-CN │ │ └── cosmic_applet_time.ftl │ └── zh-TW │ │ └── cosmic_applet_time.ftl └── src │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ ├── time.rs │ └── window.rs ├── cosmic-applet-workspaces ├── Cargo.toml ├── data │ ├── com.system76.CosmicAppletWorkspaces.desktop │ └── icons │ │ └── scalable │ │ └── apps │ │ └── com.system76.CosmicAppletWorkspaces.svg ├── i18n.toml ├── i18n │ ├── af │ │ └── cosmic_applet_workspaces.ftl │ ├── ar │ │ └── cosmic_applet_workspaces.ftl │ ├── be │ │ └── cosmic_applet_workspaces.ftl │ ├── bg │ │ └── cosmic_applet_workspaces.ftl │ ├── ca │ │ └── cosmic_applet_workspaces.ftl │ ├── cs │ │ └── cosmic_applet_workspaces.ftl │ ├── da │ │ └── cosmic_applet_workspaces.ftl │ ├── de │ │ └── cosmic_applet_workspaces.ftl │ ├── el │ │ └── cosmic_applet_workspaces.ftl │ ├── en-GB │ │ └── cosmic_applet_workspaces.ftl │ ├── en │ │ └── cosmic_applet_workspaces.ftl │ ├── eo │ │ └── cosmic_applet_workspaces.ftl │ ├── es-419 │ │ └── cosmic_applet_workspaces.ftl │ ├── es-ES │ │ └── cosmic_applet_workspaces.ftl │ ├── es-MX │ │ └── cosmic_applet_workspaces.ftl │ ├── et │ │ └── cosmic_applet_workspaces.ftl │ ├── fa │ │ └── cosmic_applet_workspaces.ftl │ ├── fi │ │ └── cosmic_applet_workspaces.ftl │ ├── fr │ │ └── cosmic_applet_workspaces.ftl │ ├── frk │ │ └── cosmic_applet_workspaces.ftl │ ├── fy │ │ └── cosmic_applet_workspaces.ftl │ ├── ga │ │ └── cosmic_applet_workspaces.ftl │ ├── gd │ │ └── cosmic_applet_workspaces.ftl │ ├── gu │ │ └── cosmic_applet_workspaces.ftl │ ├── he │ │ └── cosmic_applet_workspaces.ftl │ ├── hi │ │ └── cosmic_applet_workspaces.ftl │ ├── hr │ │ └── cosmic_applet_workspaces.ftl │ ├── hu │ │ └── cosmic_applet_workspaces.ftl │ ├── id │ │ └── cosmic_applet_workspaces.ftl │ ├── ie │ │ └── cosmic_applet_workspaces.ftl │ ├── is │ │ └── cosmic_applet_workspaces.ftl │ ├── it │ │ └── cosmic_applet_workspaces.ftl │ ├── ja │ │ └── cosmic_applet_workspaces.ftl │ ├── jv │ │ └── cosmic_applet_workspaces.ftl │ ├── kmr │ │ └── cosmic_applet_workspaces.ftl │ ├── kn │ │ └── cosmic_applet_workspaces.ftl │ ├── ko │ │ └── cosmic_applet_workspaces.ftl │ ├── li │ │ └── cosmic_applet_workspaces.ftl │ ├── lt │ │ └── cosmic_applet_workspaces.ftl │ ├── nb │ │ └── cosmic_applet_workspaces.ftl │ ├── nl │ │ └── cosmic_applet_workspaces.ftl │ ├── nn │ │ └── cosmic_applet_workspaces.ftl │ ├── pl │ │ └── cosmic_applet_workspaces.ftl │ ├── pt-BR │ │ └── cosmic_applet_workspaces.ftl │ ├── pt │ │ └── cosmic_applet_workspaces.ftl │ ├── ro │ │ └── cosmic_applet_workspaces.ftl │ ├── ru │ │ └── cosmic_applet_workspaces.ftl │ ├── sk │ │ └── cosmic_applet_workspaces.ftl │ ├── sr-Cyrl │ │ └── cosmic_applet_workspaces.ftl │ ├── sr-Latn │ │ └── cosmic_applet_workspaces.ftl │ ├── sr │ │ └── cosmic_applet_workspaces.ftl │ ├── sv │ │ └── cosmic_applet_workspaces.ftl │ ├── ta │ │ └── cosmic_applet_workspaces.ftl │ ├── th │ │ └── cosmic_applet_workspaces.ftl │ ├── tr │ │ └── cosmic_applet_workspaces.ftl │ ├── uk │ │ └── cosmic_applet_workspaces.ftl │ ├── vi │ │ └── cosmic_applet_workspaces.ftl │ ├── zh-CN │ │ └── cosmic_applet_workspaces.ftl │ └── zh-TW │ │ └── cosmic_applet_workspaces.ftl └── src │ ├── colors.rs │ ├── components │ ├── app.rs │ └── mod.rs │ ├── config.rs │ ├── lib.rs │ ├── localize.rs │ ├── main.rs │ ├── wayland.rs │ └── wayland_subscription.rs ├── cosmic-applets-config ├── Cargo.toml └── src │ ├── lib.rs │ └── time.rs ├── cosmic-applets ├── Cargo.toml └── src │ └── main.rs ├── cosmic-panel-app-button └── data │ ├── com.system76.CosmicPanelAppButton.desktop │ └── icons │ └── scalable │ └── apps │ └── com.system76.CosmicPanelAppButton.svg ├── cosmic-panel-button ├── Cargo.toml └── src │ ├── config.rs │ ├── lib.rs │ └── main.rs ├── cosmic-panel-launcher-button └── data │ ├── com.system76.CosmicPanelLauncherButton.desktop │ └── icons │ └── scalable │ └── apps │ └── com.system76.CosmicPanelLauncherButton.svg ├── cosmic-panel-workspaces-button └── data │ ├── com.system76.CosmicPanelWorkspacesButton.desktop │ └── icons │ └── scalable │ └── apps │ └── com.system76.CosmicPanelWorkspacesButton.svg ├── data └── com.system76.CosmicApplets.metainfo.xml ├── debian ├── changelog ├── control ├── copyright ├── links ├── rules └── source │ └── format ├── flake.lock ├── flake.nix ├── justfile └── rust-toolchain.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/validate-desktop-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/.github/workflows/validate-desktop-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/LICENSE -------------------------------------------------------------------------------- /cosmic-app-list/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/Cargo.toml -------------------------------------------------------------------------------- /cosmic-app-list/cosmic-app-list-config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/cosmic-app-list-config/Cargo.toml -------------------------------------------------------------------------------- /cosmic-app-list/cosmic-app-list-config/src/config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/cosmic-app-list-config/src/config.ron -------------------------------------------------------------------------------- /cosmic-app-list/cosmic-app-list-config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/cosmic-app-list-config/src/lib.rs -------------------------------------------------------------------------------- /cosmic-app-list/data/com.system76.CosmicAppList.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/data/com.system76.CosmicAppList.desktop -------------------------------------------------------------------------------- /cosmic-app-list/data/default_schema/com.system76.CosmicAppList/v1/filter_top_levels: -------------------------------------------------------------------------------- 1 | None -------------------------------------------------------------------------------- /cosmic-app-list/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-app-list/i18n/af/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ar/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/ar/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/be/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/be/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/bg/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/bg/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ca/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/cs/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/cs/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/da/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/de/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/de/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/el/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/en-GB/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/en/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/en/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/eo/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/es-419/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/es-419/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/es-ES/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/es-ES/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/es-MX/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/et/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/et/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/fa/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/fa/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/fi/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/fi/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/fr/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/fr/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/frk/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/fy/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ga/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/ga/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/gd/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/gu/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/he/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/hi/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/hi/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/hr/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/hu/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/hu/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/id/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ie/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/is/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/is/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/it/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/it/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ja/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/ja/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/jv/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/kmr/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/kn/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/kn/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ko/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/ko/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/li/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/lt/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/nb/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/nb/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/nl/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/nl/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/nn/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/nn/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/pl/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/pl/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/pt-BR/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/pt-BR/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/pt/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/pt/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ro/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/ro/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ru/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/ru/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/sk/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/sk/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/sr-Cyrl/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/sr-Cyrl/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/sr-Latn/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/sr-Latn/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/sr/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/sv/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/sv/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/ta/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/th/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/tr/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/tr/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/uk/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/uk/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/vi/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-app-list/i18n/zh-CN/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/zh-CN/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/i18n/zh-TW/cosmic_app_list.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/i18n/zh-TW/cosmic_app_list.ftl -------------------------------------------------------------------------------- /cosmic-app-list/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/app.rs -------------------------------------------------------------------------------- /cosmic-app-list/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/lib.rs -------------------------------------------------------------------------------- /cosmic-app-list/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/localize.rs -------------------------------------------------------------------------------- /cosmic-app-list/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/main.rs -------------------------------------------------------------------------------- /cosmic-app-list/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/utils.rs -------------------------------------------------------------------------------- /cosmic-app-list/src/wayland_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/wayland_handler.rs -------------------------------------------------------------------------------- /cosmic-app-list/src/wayland_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-app-list/src/wayland_subscription.rs -------------------------------------------------------------------------------- /cosmic-applet-a11y/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-a11y/data/com.system76.CosmicAppletA11y.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/data/com.system76.CosmicAppletA11y.desktop -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/af/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ar/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/ar/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/be/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/be/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/bg/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/bg/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ca/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/cs/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/cs/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/da/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/de/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/de/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/el/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/en-GB/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/en/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/en/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/eo/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/es-419/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/es-419/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/es-MX/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/es/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/es/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/et/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/et/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/fa/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/fa/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/fi/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/fr/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/fr/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/frk/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/fy/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ga/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/ga/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/gd/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/gu/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/he/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/hi/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/hi/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/hr/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/hu/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/hu/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/id/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ie/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/is/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/is/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/it/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/it/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ja/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/ja/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/jv/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/kmr/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/kn/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ko/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/li/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/lt/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/nb/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/nb/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/nl/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/nl/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/nn/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/nn/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/pl/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/pl/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/pt-BR/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/pt-BR/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/pt/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/pt/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ro/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/ro/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ru/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/ru/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/sk/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/sk/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/sr-Cyrl/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/sr-Cyrl/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/sr-Latn/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/sr/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/sv/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/sv/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/ta/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/th/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/tr/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/tr/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/uk/cosmic_app_list.ftl: -------------------------------------------------------------------------------- 1 | accessibility = Доступність 2 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/uk/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/uk/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/vi/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/zh-CN/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/zh-CN/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/i18n/zh-TW/cosmic_applet_a11y.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/i18n/zh-TW/cosmic_applet_a11y.ftl -------------------------------------------------------------------------------- /cosmic-applet-a11y/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/src/app.rs -------------------------------------------------------------------------------- /cosmic-applet-a11y/src/backend/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod wayland; 2 | -------------------------------------------------------------------------------- /cosmic-applet-a11y/src/backend/wayland/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/src/backend/wayland/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-a11y/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-a11y/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-a11y/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-a11y/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-audio/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-audio/data/com.system76.CosmicAppletAudio.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/data/com.system76.CosmicAppletAudio.desktop -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/af/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ar/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/ar/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/be/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/be/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/bg/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/bg/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ca/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/cs/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/cs/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/da/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/de/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/de/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/el/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/en-GB/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/en/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/en/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/eo/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/es-419/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/es-419/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/es-ES/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/es-ES/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/es-MX/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/et/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/et/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/fa/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/fa/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/fi/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/fi/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/fr/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/fr/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/frk/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/fy/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ga/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/ga/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/gd/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/gu/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/he/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/hi/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/hi/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/hr/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/hu/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/hu/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/id/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/id/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ie/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/is/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/is/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/it/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/it/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ja/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/ja/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/jv/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/kmr/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/kn/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/kn/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ko/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/ko/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/li/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/lt/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/nb/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/nb/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/nl/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/nl/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/nn/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/nn/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/pl/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/pl/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/pt-BR/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/pt-BR/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/pt/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/pt/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ro/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/ro/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ru/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/ru/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/sk/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/sk/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/sr-Cyrl/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/sr-Cyrl/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/sr-Latn/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/sr-Latn/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/sr/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/sv/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/sv/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/ta/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/th/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/tr/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/tr/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/uk/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/uk/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/vi/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/zh-CN/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/zh-CN/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/i18n/zh-TW/cosmic_applet_audio.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/i18n/zh-TW/cosmic_applet_audio.ftl -------------------------------------------------------------------------------- /cosmic-applet-audio/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/src/config.rs -------------------------------------------------------------------------------- /cosmic-applet-audio/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-audio/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-audio/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-audio/src/mouse_area.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/src/mouse_area.rs -------------------------------------------------------------------------------- /cosmic-applet-audio/src/mpris_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-audio/src/mpris_subscription.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-battery/data/com.system76.CosmicAppletBattery.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/data/com.system76.CosmicAppletBattery.desktop -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/af/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ar/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/ar/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/be/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/be/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/bg/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/bg/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ca/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/cs/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/cs/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/da/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/de/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/de/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/el/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/en-GB/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/en/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/en/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/eo/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/es-419/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/es-419/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/es-ES/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/es-ES/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/es-MX/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/et/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/et/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/fa/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/fa/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/fi/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/fi/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/fr/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/fr/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/frk/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/fy/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ga/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/ga/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/gd/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/gu/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/he/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/hi/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/hi/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/hr/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/hu/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/hu/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/id/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/id/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ie/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/is/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/is/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/it/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/it/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ja/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/ja/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/jv/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/kmr/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/kn/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/kn/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ko/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/li/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/lt/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/nb/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/nb/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/nl/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/nl/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/nn/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/nn/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/pl/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/pl/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/pt-BR/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/pt-BR/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/pt/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/pt/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ro/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/ro/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ru/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/ru/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/sk/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/sk/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/sr-Cyrl/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/sr-Cyrl/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/sr-Latn/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/sr-Latn/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/sr/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/sv/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/sv/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/ta/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/th/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/tr/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/tr/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/uk/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/uk/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/vi/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/zh-CN/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/zh-CN/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/i18n/zh-TW/cosmic_applet_battery.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/i18n/zh-TW/cosmic_applet_battery.ftl -------------------------------------------------------------------------------- /cosmic-applet-battery/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/app.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/backend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/backend/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/backend/power_daemon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/backend/power_daemon.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/backend/power_profiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/backend/power_profiles.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/config.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/dgpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/dgpu.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-battery/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-battery/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/af/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ar/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/ar/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/be/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/be/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/bg/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/bg/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ca/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/cs/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/cs/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/da/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/de/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/de/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/el/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/en-GB/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/en/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/en/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/eo/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/es-419/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/es-419/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/es-ES/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/es-ES/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/es-MX/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/et/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/et/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/fa/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/fa/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/fi/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/fi/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/fr/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/fr/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/frk/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/fy/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ga/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/ga/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/gd/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/gu/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/he/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/hi/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/hi/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/hr/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/hu/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/hu/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/id/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/id/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ie/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/is/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/is/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/it/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/it/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ja/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/ja/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/jv/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/kmr/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/kn/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/kn/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ko/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/ko/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/li/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/lt/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/nb/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/nb/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/nl/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/nl/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/nn/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/nn/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/pl/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/pl/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/pt-BR/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/pt-BR/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/pt/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/pt/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ro/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/ro/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ru/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/ru/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/sk/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/sk/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/sr-Cyrl/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/sr-Cyrl/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/sr-Latn/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/sr-Latn/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/sr/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/sv/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/sv/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/ta/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/th/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/tr/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/tr/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/uk/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/uk/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/vi/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/zh-CN/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/zh-CN/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/i18n/zh-TW/cosmic_applet_bluetooth.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/i18n/zh-TW/cosmic_applet_bluetooth.ftl -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/src/app.rs -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/src/bluetooth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/src/bluetooth.rs -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/src/config.rs -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-bluetooth/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-bluetooth/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-input-sources/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/af/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ar/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/ar/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/be/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/be/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/bg/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/bg/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ca/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/cs/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/cs/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/da/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/de/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/de/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/el/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/en-GB/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/en/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/en/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/eo/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/es-MX/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/es/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/es/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/et/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/et/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/fa/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/fa/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/fi/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/fr/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/fr/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/frk/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/fy/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ga/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/ga/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/gd/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/gu/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/he/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/hi/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/hi/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/hr/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/hu/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/hu/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/id/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ie/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/is/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | show-keyboard-layout = Sýna lyklaborðsskipan... 2 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/it/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/it/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ja/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/ja/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/jv/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/kmr/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/kn/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/kn/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ko/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/li/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/lt/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/nb/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/nb/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/nl/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/nl/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/nn/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/nn/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/pl/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/pl/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/pt/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/pt/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ro/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/ro/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ru/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/ru/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/sk/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/sk/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/sr-Latn/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/sr/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/sv/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/sv/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/ta/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/th/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/tr/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/tr/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/uk/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/i18n/uk/cosmic_applet_input_sources.ftl -------------------------------------------------------------------------------- /cosmic-applet-input-sources/i18n/vi/cosmic_applet_input_sources.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-input-sources/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-input-sources/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-input-sources/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-input-sources/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-minimize/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-minimize/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-minimize/i18n/ar/cosmic_applet_minimize.ftl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cosmic-applet-minimize/i18n/en/cosmic_applet_minimize.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-minimize/i18n/zh-TW/cosmic_applet_minimize.ftl: -------------------------------------------------------------------------------- 1 | minimize-all-windows = 最小化所有視窗 2 | show-desktop = 顯示桌面 3 | -------------------------------------------------------------------------------- /cosmic-applet-minimize/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-minimize/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-minimize/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-minimize/src/wayland_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/src/wayland_handler.rs -------------------------------------------------------------------------------- /cosmic-applet-minimize/src/wayland_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/src/wayland_subscription.rs -------------------------------------------------------------------------------- /cosmic-applet-minimize/src/window_image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-minimize/src/window_image.rs -------------------------------------------------------------------------------- /cosmic-applet-network/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-network/data/com.system76.CosmicAppletNetwork.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/data/com.system76.CosmicAppletNetwork.desktop -------------------------------------------------------------------------------- /cosmic-applet-network/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/af/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ar/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/ar/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/be/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/be/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/bg/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/bg/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ca/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/cs/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/cs/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/da/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/de/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/de/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/el/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/en-GB/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/en/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/en/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/eo/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/es-419/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/es-419/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/es-ES/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/es-ES/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/es-MX/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/et/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/et/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/fa/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/fa/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/fi/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/fi/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/fr/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/fr/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/frk/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/fy/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ga/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/ga/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/gd/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/gu/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/he/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/he/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/hi/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/hi/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/hr/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/hu/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/hu/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/id/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ie/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/is/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/is/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/it/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/it/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ja/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/ja/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/jv/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/kmr/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/kn/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/kn/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ko/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/ko/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/li/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/lt/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/nb/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/nb/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/nl/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/nl/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/nn/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/nn/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/pl/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/pl/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/pt-BR/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/pt-BR/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/pt/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/pt/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ro/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/ro/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ru/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/ru/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/sk/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/sk/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/sr-Cyrl/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/sr-Cyrl/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/sr-Latn/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/sr-Latn/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/sr/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/sv/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/sv/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/ta/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/th/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/tr/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/tr/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/uk/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/uk/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/vi/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/zh-CN/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/zh-CN/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/i18n/zh-TW/cosmic_applet_network.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/i18n/zh-TW/cosmic_applet_network.ftl -------------------------------------------------------------------------------- /cosmic-applet-network/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/app.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/config.rs: -------------------------------------------------------------------------------- 1 | pub const APP_ID: &str = "com.system76.CosmicAppletNetwork"; 2 | -------------------------------------------------------------------------------- /cosmic-applet-network/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/active_conns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/active_conns.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/available_vpns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/available_vpns.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/available_wifi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/available_wifi.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/current_networks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/current_networks.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/devices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/devices.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/hw_address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/hw_address.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-network/src/network_manager/wireless_enabled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-network/src/network_manager/wireless_enabled.rs -------------------------------------------------------------------------------- /cosmic-applet-notifications/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/af/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ar/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/ar/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/be/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/be/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/bg/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/bg/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ca/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/cs/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/cs/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/da/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/de/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/de/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/el/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/en-GB/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/en/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/en/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/eo/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/es-ES/cosmic_applet_notifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/es-ES/cosmic_applet_notifications -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/es-MX/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/es/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/es/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/et/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/et/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/fa/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/fa/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/fi/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/fi/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/fr/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/fr/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/frk/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/fy/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ga/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/ga/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/gd/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/gu/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/he/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/hi/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/hi/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/hr/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/hu/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/hu/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/id/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ie/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/is/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/is/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/it/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/it/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ja/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/ja/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/jv/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/kmr/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/kn/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/kn/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ko/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/ko/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/li/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/lt/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/nb/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/nb/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/nl/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/nl/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/nn/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/i18n/nn/cosmic_applet_notifications.ftl -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/sr/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/ta/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/th/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/i18n/vi/cosmic_applet_notifications.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-notifications/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-notifications/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-notifications/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-notifications/src/subscriptions/dbus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/src/subscriptions/dbus.rs -------------------------------------------------------------------------------- /cosmic-applet-notifications/src/subscriptions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/src/subscriptions/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-notifications/src/subscriptions/notifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-notifications/src/subscriptions/notifications.rs -------------------------------------------------------------------------------- /cosmic-applet-power/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-power/data/com.system76.CosmicAppletPower.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/data/com.system76.CosmicAppletPower.desktop -------------------------------------------------------------------------------- /cosmic-applet-power/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/af/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ar/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/ar/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/be/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/be/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/bg/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/bg/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ca/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/cs/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/cs/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/da/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/de/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/de/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/el/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/en-GB/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/en/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/en/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/eo/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/es-419/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/es-419/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/es-ES/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/es-ES/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/es-MX/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/et/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/et/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/fa/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/fa/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/fi/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/fi/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/fr/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/fr/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/frk/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/fy/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ga/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/ga/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/gd/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/gu/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/he/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/he/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/hi/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/hi/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/hr/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/hu/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/hu/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/id/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ie/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/is/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/is/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/it/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/it/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ja/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/ja/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/jv/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/kmr/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/kn/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/kn/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ko/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/ko/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/li/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/lt/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/nb/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/nb/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/nl/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/nl/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/nn/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/nn/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/pl/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/pl/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/pt-BR/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/pt-BR/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/pt/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/pt/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ro/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/ro/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ru/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/ru/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/sk/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/sk/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/sr-Cyrl/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/sr-Cyrl/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/sr-Latn/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/sr-Latn/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/sr/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/sv/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/sv/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/ta/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/th/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/tr/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/tr/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/uk/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/uk/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/vi/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/zh-CN/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/zh-CN/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/i18n/zh-TW/cosmic_applet_power.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/i18n/zh-TW/cosmic_applet_power.ftl -------------------------------------------------------------------------------- /cosmic-applet-power/src/cosmic_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/src/cosmic_session.rs -------------------------------------------------------------------------------- /cosmic-applet-power/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-power/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-power/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-power/src/session_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-power/src/session_manager.rs -------------------------------------------------------------------------------- /cosmic-applet-status-area/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-status-area/src/components/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/src/components/app.rs -------------------------------------------------------------------------------- /cosmic-applet-status-area/src/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/src/components/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-status-area/src/components/status_menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/src/components/status_menu.rs -------------------------------------------------------------------------------- /cosmic-applet-status-area/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-status-area/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-status-area/src/subscriptions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-status-area/src/subscriptions/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-tiling/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-tiling/data/com.system76.CosmicAppletTiling.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/data/com.system76.CosmicAppletTiling.desktop -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/af/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ar/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/ar/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/be/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/be/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/bg/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/bg/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ca/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/cs/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/cs/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/da/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/de/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/de/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/el/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/en-GB/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/en/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/en/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/eo/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/es-419/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/es-419/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/es-ES/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/es-ES/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/es-MX/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/et/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/et/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/fa/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/fa/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/fi/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/fi/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/fr/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/fr/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/frk/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/fy/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ga/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/ga/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/gd/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/gu/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/he/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/hi/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/hi/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/hr/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/hu/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/hu/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/id/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ie/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/is/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/is/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/it/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/it/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ja/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/ja/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/jv/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/kmr/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/kn/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/kn/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ko/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/li/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/lt/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/nb/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/nb/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/nl/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/nl/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/nn/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/nn/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/pl/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/pl/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/pt-BR/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/pt-BR/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/pt/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/pt/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ro/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/ro/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ru/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/ru/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/sk/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/sk/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/sr-Cyrl/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/sr-Cyrl/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/sr-Latn/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/sr-Latn/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/sr/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/sv/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/sv/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/ta/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/th/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/tr/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/tr/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/uk/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/uk/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/vi/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/zh-CN/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/zh-CN/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/i18n/zh-TW/cosmic_applet_tiling.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/i18n/zh-TW/cosmic_applet_tiling.ftl -------------------------------------------------------------------------------- /cosmic-applet-tiling/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-tiling/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-tiling/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-tiling/src/wayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/src/wayland.rs -------------------------------------------------------------------------------- /cosmic-applet-tiling/src/wayland_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/src/wayland_subscription.rs -------------------------------------------------------------------------------- /cosmic-applet-tiling/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-tiling/src/window.rs -------------------------------------------------------------------------------- /cosmic-applet-time/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-time/data/com.system76.CosmicAppletTime.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/data/com.system76.CosmicAppletTime.desktop -------------------------------------------------------------------------------- /cosmic-applet-time/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/af/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ar/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/ar/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/be/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/be/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/bg/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/bg/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ca/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/cs/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Nastavení času, datumu a kalendáře... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/da/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/de/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Datum, Uhrzeit und Kalendereinstellungen... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/el/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/en-GB/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/en/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/en/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/eo/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/es-419/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Configuración de fecha, hora y calendario... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/es-ES/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Ajustes de fecha, hora, y calendario... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/es-MX/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/et/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Kuupäeva, kellaaja ja kalendri seadistused... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/fa/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/fa/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/fi/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/fr/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Paramètres date, heure et agenda... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/frk/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/fy/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ga/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Socruithe Dáta, Ama agus Féilire... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/gd/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/gu/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/he/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/hi/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/hi/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/hr/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/hu/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Dátum, idő és naptár beállítások... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/id/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ie/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/is/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/it/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Impostazioni calendario, data e ora... -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ja/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = 日付と時刻... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/jv/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/kmr/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/kn/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/kn/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ko/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/li/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/lt/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/nb/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/nb/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/nl/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/nl/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/nn/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/nn/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/pl/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Ustawienia daty, godziny i kalendarza… 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/pt-BR/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Configurações de data, hora e calendário... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/pt/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Definições de Data, Hora e Calendário... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ro/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Setări Dată, Oră și Calendar... -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ru/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/ru/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/sk/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Nastavenia času, dátumu a kalendára... -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/sr-Cyrl/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/sr-Cyrl/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/sr-Latn/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Podešavanja datuma, vremena i kalendara... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/sr/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/sv/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Datum-, tid- och kalenderinställningar... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/ta/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/th/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/tr/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = Tarih, Saat ve Takvim ayarları... -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/uk/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/i18n/uk/cosmic_applet_time.ftl -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/vi/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/zh-CN/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = 日期、时间和日历设置... 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/i18n/zh-TW/cosmic_applet_time.ftl: -------------------------------------------------------------------------------- 1 | datetime-settings = 日期、時間與日曆設定… 2 | -------------------------------------------------------------------------------- /cosmic-applet-time/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-time/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-time/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-time/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/src/time.rs -------------------------------------------------------------------------------- /cosmic-applet-time/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-time/src/window.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/af/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ar/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = مساحات عمل COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/be/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Працоўныя прасторы COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/bg/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/bg/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ca/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/cs/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Pracovní plochy COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/da/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/de/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Arbeitsflächen 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/el/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/en-GB/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/en/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/en/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/eo/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/es-419/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/es-419/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/es-ES/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/es-ES/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/es-MX/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/et/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMICu tööalad 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/fa/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = محیط‌های کاری COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/fi/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Työtilat 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/fr/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/fr/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/frk/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/fy/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ga/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Spásanna Oibre 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/gd/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/gu/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/he/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/hi/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/hi/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/hr/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/hu/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Munkaterületek 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/id/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ie/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/is/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/it/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/it/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ja/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC ワークスペース 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/jv/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/kmr/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/kn/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/i18n/kn/cosmic_applet_workspaces.ftl -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ko/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = 코스믹 작업공간 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/li/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/lt/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/nb/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Arbeidsområder 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/nl/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Werkbladen 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/nn/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Arbeidsområde 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/pl/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Obszary robocze COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/pt-BR/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Áreas de Trabalho 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/pt/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Áreas de trabalho COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ro/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Spații de lucru COSMIC -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ru/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Рабочие столы COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/sk/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Pracovné plochy COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/sr-Cyrl/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC радни простори 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/sr-Latn/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC radni prostori 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/sr/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/sv/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Arbetsytor 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/ta/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/th/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/tr/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC Çalışma Alanları 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/uk/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = Робочі простори COSMIC 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/vi/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/zh-CN/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC 工作区 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/i18n/zh-TW/cosmic_applet_workspaces.ftl: -------------------------------------------------------------------------------- 1 | cosmic-applet-workspaces = COSMIC 工作空間 2 | -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/colors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/colors.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/components/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/components/app.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/components/mod.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/config.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/lib.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/localize.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/main.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/wayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/wayland.rs -------------------------------------------------------------------------------- /cosmic-applet-workspaces/src/wayland_subscription.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applet-workspaces/src/wayland_subscription.rs -------------------------------------------------------------------------------- /cosmic-applets-config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applets-config/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applets-config/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod time; 2 | -------------------------------------------------------------------------------- /cosmic-applets-config/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applets-config/src/time.rs -------------------------------------------------------------------------------- /cosmic-applets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applets/Cargo.toml -------------------------------------------------------------------------------- /cosmic-applets/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-applets/src/main.rs -------------------------------------------------------------------------------- /cosmic-panel-button/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-panel-button/Cargo.toml -------------------------------------------------------------------------------- /cosmic-panel-button/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-panel-button/src/config.rs -------------------------------------------------------------------------------- /cosmic-panel-button/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-panel-button/src/lib.rs -------------------------------------------------------------------------------- /cosmic-panel-button/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/cosmic-panel-button/src/main.rs -------------------------------------------------------------------------------- /data/com.system76.CosmicApplets.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/data/com.system76.CosmicApplets.metainfo.xml -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/debian/links -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-applets/HEAD/justfile -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.90.0" 3 | --------------------------------------------------------------------------------