├── .github └── workflows │ └── build.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── i18n.toml ├── i18n ├── bg │ └── stellarshot.ftl ├── de │ └── stellarshot.ftl ├── en │ └── stellarshot.ftl ├── gsw │ └── stellarshot.ftl └── sv │ └── stellarshot.ftl ├── justfile ├── res ├── com.github.cosmic-utils.Stellarshot.desktop ├── com.github.cosmic-utils.Stellarshot.metainfo.xml ├── icons │ ├── bundled │ │ ├── box-outline-symbolic.svg │ │ ├── harddisk-symbolic.svg │ │ ├── hourglass-symbolic.svg │ │ ├── info-outline-symbolic.svg │ │ ├── timer-sand-symbolic.svg │ │ └── user-trash-full-symbolic.svg │ ├── com.github.cosmic-utils.Stellarshot.Source.svg │ └── hicolor │ │ └── scalable │ │ └── apps │ │ └── com.github.cosmic-utils.Stellarshot.svg └── screenshots │ ├── Stellarshot-Dark.png │ └── Stellarshot-Light.png ├── shell.nix └── src ├── app.rs ├── app ├── config.rs ├── error.rs ├── icon_cache.rs ├── key_bind.rs ├── menu.rs ├── settings.rs ├── views.rs └── views │ └── content.rs ├── backup.rs ├── backup ├── init.rs ├── restore.rs └── snapshot.rs ├── core ├── localization.rs └── mod.rs └── main.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/README.md -------------------------------------------------------------------------------- /i18n.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/i18n.toml -------------------------------------------------------------------------------- /i18n/bg/stellarshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/i18n/bg/stellarshot.ftl -------------------------------------------------------------------------------- /i18n/de/stellarshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/i18n/de/stellarshot.ftl -------------------------------------------------------------------------------- /i18n/en/stellarshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/i18n/en/stellarshot.ftl -------------------------------------------------------------------------------- /i18n/gsw/stellarshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/i18n/gsw/stellarshot.ftl -------------------------------------------------------------------------------- /i18n/sv/stellarshot.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/i18n/sv/stellarshot.ftl -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/justfile -------------------------------------------------------------------------------- /res/com.github.cosmic-utils.Stellarshot.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/com.github.cosmic-utils.Stellarshot.desktop -------------------------------------------------------------------------------- /res/com.github.cosmic-utils.Stellarshot.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/com.github.cosmic-utils.Stellarshot.metainfo.xml -------------------------------------------------------------------------------- /res/icons/bundled/box-outline-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/bundled/box-outline-symbolic.svg -------------------------------------------------------------------------------- /res/icons/bundled/harddisk-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/bundled/harddisk-symbolic.svg -------------------------------------------------------------------------------- /res/icons/bundled/hourglass-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/bundled/hourglass-symbolic.svg -------------------------------------------------------------------------------- /res/icons/bundled/info-outline-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/bundled/info-outline-symbolic.svg -------------------------------------------------------------------------------- /res/icons/bundled/timer-sand-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/bundled/timer-sand-symbolic.svg -------------------------------------------------------------------------------- /res/icons/bundled/user-trash-full-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/bundled/user-trash-full-symbolic.svg -------------------------------------------------------------------------------- /res/icons/com.github.cosmic-utils.Stellarshot.Source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/com.github.cosmic-utils.Stellarshot.Source.svg -------------------------------------------------------------------------------- /res/icons/hicolor/scalable/apps/com.github.cosmic-utils.Stellarshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/icons/hicolor/scalable/apps/com.github.cosmic-utils.Stellarshot.svg -------------------------------------------------------------------------------- /res/screenshots/Stellarshot-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/screenshots/Stellarshot-Dark.png -------------------------------------------------------------------------------- /res/screenshots/Stellarshot-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/res/screenshots/Stellarshot-Light.png -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/shell.nix -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/app/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/config.rs -------------------------------------------------------------------------------- /src/app/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/error.rs -------------------------------------------------------------------------------- /src/app/icon_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/icon_cache.rs -------------------------------------------------------------------------------- /src/app/key_bind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/key_bind.rs -------------------------------------------------------------------------------- /src/app/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/menu.rs -------------------------------------------------------------------------------- /src/app/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/settings.rs -------------------------------------------------------------------------------- /src/app/views.rs: -------------------------------------------------------------------------------- 1 | pub mod content; 2 | -------------------------------------------------------------------------------- /src/app/views/content.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/app/views/content.rs -------------------------------------------------------------------------------- /src/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/backup.rs -------------------------------------------------------------------------------- /src/backup/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/backup/init.rs -------------------------------------------------------------------------------- /src/backup/restore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/backup/restore.rs -------------------------------------------------------------------------------- /src/backup/snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/backup/snapshot.rs -------------------------------------------------------------------------------- /src/core/localization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/core/localization.rs -------------------------------------------------------------------------------- /src/core/mod.rs: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-3.0-only 2 | 3 | pub mod localization; 4 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmic-utils/stellarshot/HEAD/src/main.rs --------------------------------------------------------------------------------