Merge branch 'main' of https://github.com/shibedrill/oxidefetch
This commit is contained in:
commit
3462b18a8f
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "oxidefetch"
|
name = "oxidefetch"
|
||||||
version = "0.1.0"
|
version = "1.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# oxidefetch
|
# oxidefetch 1.0.1
|
||||||
Fully cross platform Neofetch clone written in Rust. Up to 25 times faster than Neofetch!
|
Fully cross platform Neofetch clone written in Rust. Up to 25 times faster than Neofetch!
|
||||||
|
|
||||||

|

|
||||||
@ -14,7 +14,7 @@ I've measured speeds of up to 25 times faster than normal Neofetch on WSL2.
|
|||||||
### Dependencies (Build/Install)
|
### Dependencies (Build/Install)
|
||||||
To build Oxidefetch, you need Cargo. You can use Cargo to automatically build and install it like so:
|
To build Oxidefetch, you need Cargo. You can use Cargo to automatically build and install it like so:
|
||||||
```cargo install --git https://github.com/shibedrill/oxidefetch```.
|
```cargo install --git https://github.com/shibedrill/oxidefetch```.
|
||||||
From there, it *should* be in your PATH. If not, add ```~/.cargo/bin``` to your PATH. If you do not already have Cargo installed
|
From there, it *should* be in your PATH. If not, add ```source ~/.cargo/env``` to your profile, or add ```~/.cargo/bin``` to your $PATH. If you do not already have Cargo installed
|
||||||
on your system, you can do so by installing Rustup- either via the [instructions on their website](https://doc.rust-lang.org/cargo/getting-started/installation.html "instructions on their website") or via your system package manager.
|
on your system, you can do so by installing Rustup- either via the [instructions on their website](https://doc.rust-lang.org/cargo/getting-started/installation.html "instructions on their website") or via your system package manager.
|
||||||
|
|
||||||
### Dependencies (Runtime)
|
### Dependencies (Runtime)
|
||||||
@ -31,3 +31,7 @@ with varying types of systems. I've tested Arch Linux and Windows 10, but nothin
|
|||||||
repo, and inside the folder, run ```cargo test -- --nocapture```, and send the resultant ```test_output.txt``` file to my
|
repo, and inside the folder, run ```cargo test -- --nocapture```, and send the resultant ```test_output.txt``` file to my
|
||||||
noreply email address, or directly to me on Discord at ```Shibe Drill#9730```. This program does NOT collect information
|
noreply email address, or directly to me on Discord at ```Shibe Drill#9730```. This program does NOT collect information
|
||||||
regarding your real name, IP, location, etc. You can look at the file it generates to be sure- it's all plaintext, babey.
|
regarding your real name, IP, location, etc. You can look at the file it generates to be sure- it's all plaintext, babey.
|
||||||
|
|
||||||
|
### Changelog
|
||||||
|
1.0.0: Official full stable release
|
||||||
|
1.0.1: Fixed distro name for Debian GNU/Linux. Logo & color works now.
|
||||||
|
@ -164,7 +164,7 @@ impl InformationStruct {
|
|||||||
"Alpine Linux" => '',
|
"Alpine Linux" => '',
|
||||||
"Arch Linux" => '',
|
"Arch Linux" => '',
|
||||||
"CentOS" => '',
|
"CentOS" => '',
|
||||||
"Linux Debian" => '',
|
"Debian GNU/Linux" => '',
|
||||||
"ElementaryOS" => '',
|
"ElementaryOS" => '',
|
||||||
"EndeavourOS" => '',
|
"EndeavourOS" => '',
|
||||||
"Fedora Linux" => '',
|
"Fedora Linux" => '',
|
||||||
@ -203,7 +203,7 @@ impl InformationStruct {
|
|||||||
// Again, I don't know whether this is what the strings will look like.
|
// Again, I don't know whether this is what the strings will look like.
|
||||||
// Feel free to fix if it's broken on your system.
|
// Feel free to fix if it's broken on your system.
|
||||||
{
|
{
|
||||||
"Linux Debian" => String::from("bright red"),
|
"Debian GNU/Linux" => String::from("bright red"),
|
||||||
"FreeBSD" => String::from("red"),
|
"FreeBSD" => String::from("red"),
|
||||||
"Ubuntu Linux" => String::from("orange"),
|
"Ubuntu Linux" => String::from("orange"),
|
||||||
"Arch Linux" | "Windows" | "PopOS" => String::from("bright cyan"),
|
"Arch Linux" | "Windows" | "PopOS" => String::from("bright cyan"),
|
||||||
|
Loading…
Reference in New Issue
Block a user