├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── config.json ├── config_fi.json ├── rustfmt.toml └── src ├── api.rs ├── config_manager.rs ├── content_box.rs └── main.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/config.json -------------------------------------------------------------------------------- /config_fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/config_fi.json -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/src/api.rs -------------------------------------------------------------------------------- /src/config_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/src/config_manager.rs -------------------------------------------------------------------------------- /src/content_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/src/content_box.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azur1s/octofetch/HEAD/src/main.rs --------------------------------------------------------------------------------