├── .github └── workflows │ └── validate-desktop-files.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── debian ├── changelog ├── control ├── copyright ├── rules └── source │ ├── format │ └── options ├── i18n.toml ├── i18n ├── af │ └── cosmic_screenshot.ftl ├── ar │ └── cosmic_screenshot.ftl ├── be │ └── cosmic_screenshot.ftl ├── bg │ └── cosmic_screenshot.ftl ├── ca │ └── cosmic_screenshot.ftl ├── cs │ └── cosmic_screenshot.ftl ├── da │ └── cosmic_screenshot.ftl ├── de │ └── cosmic_screenshot.ftl ├── el │ └── cosmic_screenshot.ftl ├── en-GB │ └── cosmic_screenshot.ftl ├── en │ └── cosmic_screenshot.ftl ├── eo │ └── cosmic_screenshot.ftl ├── es-419 │ └── cosmic_screenshot.ftl ├── es-MX │ └── cosmic_screenshot.ftl ├── es │ └── cosmic_screenshot.ftl ├── et │ └── cosmic_screenshot.ftl ├── fa │ └── cosmic_screenshot.ftl ├── fi │ └── cosmic_screenshot.ftl ├── fr │ └── cosmic_screenshot.ftl ├── frk │ └── cosmic_screenshot.ftl ├── fy │ └── cosmic_screenshot.ftl ├── ga │ └── cosmic_screenshot.ftl ├── gd │ └── cosmic_screenshot.ftl ├── gu │ └── cosmic_screenshot.ftl ├── he │ └── cosmic_screenshot.ftl ├── hi │ └── cosmic_screenshot.ftl ├── hr │ └── cosmic_screenshot.ftl ├── hu │ └── cosmic_screenshot.ftl ├── id │ └── cosmic_screenshot.ftl ├── ie │ └── cosmic_screenshot.ftl ├── is │ └── cosmic_screenshot.ftl ├── it │ └── cosmic_screenshot.ftl ├── ja │ └── cosmic_screenshot.ftl ├── jv │ └── cosmic_screenshot.ftl ├── kn │ └── cosmic_screenshot.ftl ├── ko │ └── cosmic_screenshot.ftl ├── li │ └── cosmic_screenshot.ftl ├── lt │ └── cosmic_screenshot.ftl ├── nb-NO │ └── cosmic_screenshot.ftl ├── nl │ └── cosmic_screenshot.ftl ├── nn │ └── cosmic_screenshot.ftl ├── pl │ └── cosmic_screenshot.ftl ├── pt-BR │ └── cosmic_screenshot.ftl ├── pt │ └── cosmic_screenshot.ftl ├── ro │ └── cosmic_screenshot.ftl ├── ru │ └── cosmic_screenshot.ftl ├── sk │ └── cosmic_screenshot.ftl ├── sr-Cyrl │ └── cosmic_screenshot.ftl ├── sr-Latn │ └── cosmic_screenshot.ftl ├── sr │ └── cosmic_screenshot.ftl ├── sv │ └── cosmic_screenshot.ftl ├── ta │ └── cosmic_screenshot.ftl ├── th │ └── cosmic_screenshot.ftl ├── tr │ └── cosmic_screenshot.ftl ├── uk │ └── cosmic_screenshot.ftl ├── vi │ └── cosmic_screenshot.ftl ├── zh-Hans │ └── cosmic_screenshot.ftl └── zh-Hant │ └── cosmic_screenshot.ftl ├── justfile ├── resources ├── com.system76.CosmicScreenshot.desktop └── icons │ └── hicolor │ ├── 128x128 │ └── apps │ │ └── com.system76.CosmicScreenshot.svg │ ├── 16x16 │ └── apps │ │ └── com.system76.CosmicScreenshot.svg │ ├── 24x24 │ └── apps │ │ └── com.system76.CosmicScreenshot.svg │ ├── 256x256 │ └── apps │ │ └── com.system76.CosmicScreenshot.svg │ ├── 32x32 │ └── apps │ │ └── com.system76.CosmicScreenshot.svg │ ├── 48x48 │ └── apps │ │ └── com.system76.CosmicScreenshot.svg │ └── 64x64 │ └── apps │ └── com.system76.CosmicScreenshot.svg └── src ├── localize.rs └── main.rs /.github/workflows/validate-desktop-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/.github/workflows/validate-desktop-files.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/debian/source/options -------------------------------------------------------------------------------- /i18n.toml: -------------------------------------------------------------------------------- 1 | fallback_language = "en" 2 | 3 | [fluent] 4 | assets_dir = "i18n" -------------------------------------------------------------------------------- /i18n/af/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/af/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/ar/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/ar/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/be/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/be/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/bg/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/bg/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/ca/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/cs/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/cs/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/da/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/de/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/de/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/el/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/en-GB/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/en/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/en/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/eo/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/es-419/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/es-419/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/es-MX/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/es/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/es/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/et/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/et/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/fa/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/fi/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/fr/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/fr/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/frk/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/fy/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/ga/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/ga/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/gd/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/gu/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/he/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/hi/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/hr/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/hu/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/hu/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/id/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/ie/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/is/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/is/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/it/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/it/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/ja/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/ja/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/jv/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/kn/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/ko/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/li/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/lt/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/nb-NO/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/nb-NO/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/nl/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/nl/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/nn/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/nn/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/pl/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/pl/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/pt-BR/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/pt-BR/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/pt/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/pt/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/ro/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/ru/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/ru/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/sk/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/sr-Cyrl/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/sr-Cyrl/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/sr-Latn/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/sr/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/sv/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/sv/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/ta/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/th/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/tr/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/tr/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/uk/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/i18n/uk/cosmic_screenshot.ftl -------------------------------------------------------------------------------- /i18n/vi/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/zh-Hans/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/zh-Hant/cosmic_screenshot.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/justfile -------------------------------------------------------------------------------- /resources/com.system76.CosmicScreenshot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/com.system76.CosmicScreenshot.desktop -------------------------------------------------------------------------------- /resources/icons/hicolor/128x128/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/128x128/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/16x16/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/16x16/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/24x24/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/24x24/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/256x256/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/256x256/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/32x32/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/32x32/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/48x48/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/48x48/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /resources/icons/hicolor/64x64/apps/com.system76.CosmicScreenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/resources/icons/hicolor/64x64/apps/com.system76.CosmicScreenshot.svg -------------------------------------------------------------------------------- /src/localize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/src/localize.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/cosmic-screenshot/HEAD/src/main.rs --------------------------------------------------------------------------------