Yet another (x)fetch tool, written in rust with cross-platform in mind.
This program was written specifically with cross-platform libraries, so in theory, this should compile and run on Windows, MacOS, and Linux. However, this program so far has only been tested on Linux, and a lot of functionality will be missing on other OSes.
Any feature requests, bug reports, or pull requests regarding this are very welcome!
feofetch
can be installed with cargo.
sh
cargo install feofetch
If you want the latest build, you can build directly from source. This requires rust to be installed on your system.
```sh git clone https:#github.com/ProspectPyxis/feofetch.git
cd feofetch/ cargo install --path . ```
Just run feofetch
in the terminal:
sh
feofetch
This program reads configuration from CONFIG_PATH/config.toml
. On MacOS and Linux,
CONFIG_PATH
is at $HOME/.config/feofetch
, while on Windows, it is at
%APPDATA%/ProspectPyxis/feofetch/config
.
Any option can be omitted, in which case it will fall back to the default as described below.
```toml
true
, the data names will be replaced with a Nerd Font icon.use_icons = false
align_spaces = 2
offset = [0, 0]
padding_lines = 1
data = ["os", "version", "uptime", "packages", "wm"]
packages
, sets whether to display the package managers used.displaypackagemanager = false
wm
, sets whether to use wmctrl
to check the window manager,use_wmctrl = false
[ascii]
print = false
CONFIG_PATH
shown here is only a placeholder.asciipath = "CONFIGPATH/ascii.txt"
align_spaces = 2 ```
Any pull requests, issues, or feature requests are welcome!
This project is licensed under either of Apache License, Version 2.0 or MIT License, at your option.