├── .envrc ├── .github ├── demo.gif ├── demo.gif.license ├── demo.tape ├── dependabot.yml └── workflows │ ├── build.yml │ ├── check.yml │ └── release.yml ├── .gitignore ├── .taplo.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── LICENSES ├── CC-BY-NC-SA-4.0.txt ├── CC0-1.0.txt └── GPL-3.0-or-later.txt ├── README.md ├── REUSE.toml ├── flake.lock ├── flake.nix └── src ├── cmd ├── add.rs ├── completions.rs ├── config.rs ├── list.rs ├── mod.rs ├── preset.rs ├── profile.rs ├── remove.rs ├── switch.rs └── update.rs ├── config.rs ├── main.rs ├── presets.rs ├── source.rs ├── switch.rs └── utils ├── download.rs └── mod.rs /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.envrc -------------------------------------------------------------------------------- /.github/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/demo.gif -------------------------------------------------------------------------------- /.github/demo.gif.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/demo.gif.license -------------------------------------------------------------------------------- /.github/demo.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/demo.tape -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.gitignore -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/.taplo.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC-BY-NC-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/LICENSES/CC-BY-NC-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/REUSE.toml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/flake.nix -------------------------------------------------------------------------------- /src/cmd/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/add.rs -------------------------------------------------------------------------------- /src/cmd/completions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/completions.rs -------------------------------------------------------------------------------- /src/cmd/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/config.rs -------------------------------------------------------------------------------- /src/cmd/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/list.rs -------------------------------------------------------------------------------- /src/cmd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/mod.rs -------------------------------------------------------------------------------- /src/cmd/preset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/preset.rs -------------------------------------------------------------------------------- /src/cmd/profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/profile.rs -------------------------------------------------------------------------------- /src/cmd/remove.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/remove.rs -------------------------------------------------------------------------------- /src/cmd/switch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/switch.rs -------------------------------------------------------------------------------- /src/cmd/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/cmd/update.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/presets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/presets.rs -------------------------------------------------------------------------------- /src/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/source.rs -------------------------------------------------------------------------------- /src/switch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/switch.rs -------------------------------------------------------------------------------- /src/utils/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/utils/download.rs -------------------------------------------------------------------------------- /src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanccn/nyoom/HEAD/src/utils/mod.rs --------------------------------------------------------------------------------