AFP

A fast sysfetch program inspired by Archey3 and Archey4 writen in rust with 56 dependencies.

Screenshot

Faq (Probably)

Configuration

AFP is configured in json. The configuration file is placed in 1 of 2 places. 1. /etc/afp/config.json 2. Depending on if $XDGCONFIGHOME is set of not. ( Usually $XDGCONFIGHOME isn't set or is set to $HOME/.config )

Yes -> $XDGCONFIGHOME/afp/config.json

No -> $HOME/.config/afp/config.json

If no config file is found, then AFP will use the default configuration.

There is a "Command" module and a "LineCount" that is configured in the same way.

An example where you run the command "foo" with "--bar" and "69" as arguments. json ... { "Command": { "command": "foo", "args": [ "--bar", "69" ], "title": "Foo: " } }, ...

The default config: json { "logo": "auto", "color": "None", "allow_lazy": true, "items": [ { "UserHost": { "title": "", "color": "None" } }, { "EnvVar": { "var": "XDG_SESSION_TYPE", "title": "Session Type: ", "color": "None" } }, { "Distro": { "title": "Distro: ", "color": "None" } }, { "Kernel": { "title": "Kernel: ", "color": "None" } }, { "Device": { "title": "Device: ", "color": "None" } }, { "Vendor": { "title": "Vendor: ", "color": "None" } }, { "RAM": { "title": "Memory: ", "color": "None" } }, { "EnvVar": { "var": "EDITOR", "title": "Editor: ", "color": "None" } }, { "Shell": { "title": "Shell: ", "color": "None" } }, { "GPU": { "title": "GPU$: ", "color": "None", "brand": true, "lazy": true } }, { "CPU": { "title": "CPU: ", "color": "None" } }, { "EnvVar": { "var": "XDG_CURRENT_DESKTOP", "title": "DE: ", "color": "None" } } ] }