├── .github └── workflows │ └── jekyll-gh-pages.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Lyon's Deck Toolbox.desktop ├── README.md ├── _config.yaml ├── assets ├── icon.png └── screenshot.png ├── install_scripts ├── cryoutilities.sh ├── deckyloader.sh ├── emudeck.sh ├── needs_root.sh ├── rwfus.sh └── steamosbtrfs.sh ├── lyon-deck-toolbox ├── release.sh ├── src ├── lib.rs └── main.rs └── tools.yaml /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Lyon's Deck Toolbox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/Lyon's Deck Toolbox.desktop -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/_config.yaml -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /install_scripts/cryoutilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/install_scripts/cryoutilities.sh -------------------------------------------------------------------------------- /install_scripts/deckyloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/install_scripts/deckyloader.sh -------------------------------------------------------------------------------- /install_scripts/emudeck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/install_scripts/emudeck.sh -------------------------------------------------------------------------------- /install_scripts/needs_root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/install_scripts/needs_root.sh -------------------------------------------------------------------------------- /install_scripts/rwfus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/install_scripts/rwfus.sh -------------------------------------------------------------------------------- /install_scripts/steamosbtrfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/install_scripts/steamosbtrfs.sh -------------------------------------------------------------------------------- /lyon-deck-toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/lyon-deck-toolbox -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/release.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/src/main.rs -------------------------------------------------------------------------------- /tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonSyonII/lyon-deck-toolbox/HEAD/tools.yaml --------------------------------------------------------------------------------