An open API service indexing awesome lists of open source software.

https://github.com/v8v88v8v88/vfetch

a minimal system information fetcher
https://github.com/v8v88v8v88/vfetch

bash fetch

Last synced: about 1 year ago
JSON representation

a minimal system information fetcher

Awesome Lists containing this project

README

          

# vfetch

vfetch is a bash script that provides a colorful and informative display of system information, featuring a stylized ASCII art header.

## Features

- Displays key system information in a visually appealing format
- Uses color-coded output for easy reading
- Shows the following system details:
- Username
- Hostname
- Operating System
- Kernel version
- System architecture
- CPU model and core count
- RAM usage
- GPU information
- Disk usage

## Requirements

- Bash shell
- Linux-based operating system
- The following commands should be available:
- `tput`
- `uname`
- `lscpu`
- `free`
- `lspci`
- `df`

## Usage

1. Save the script as `vfetch.sh`.
2. Make the script executable:
```
chmod +x vfetch.sh
```
3. Run the script:
```
./vfetch.sh
```

## Customization

You can customize the script by modifying the following:

- ASCII art header: Replace the current ASCII art with your own design.
- Color scheme: Modify the color variables at the beginning of the script to change the output colors.
- Information displayed: Add or remove information fields as needed.

## License

MIT

## Author

Vaibhav Pratap Singh AKA @v8v88v8v88

## Acknowledgments

- ASCII art generated using https://patorjk.com/software/taag/
- Inspired by various system information display tools in the Linux community