├── .github ├── dependabot.yml └── workflows │ ├── build.yaml │ ├── check.yaml │ ├── lint.yaml │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix └── src ├── arguments.rs ├── block_device.rs ├── main.rs └── modes ├── apply.rs ├── clean.rs ├── device.rs └── mod.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /completions 2 | /target 3 | /testing 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/flake.nix -------------------------------------------------------------------------------- /src/arguments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/arguments.rs -------------------------------------------------------------------------------- /src/block_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/block_device.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/modes/apply.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/modes/apply.rs -------------------------------------------------------------------------------- /src/modes/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/modes/clean.rs -------------------------------------------------------------------------------- /src/modes/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/modes/device.rs -------------------------------------------------------------------------------- /src/modes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErrorNoInternet/overmask/HEAD/src/modes/mod.rs --------------------------------------------------------------------------------