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
- Host: GitHub
- URL: https://github.com/v8v88v8v88/vfetch
- Owner: V8V88V8V88
- License: mit
- Created: 2023-03-22T13:54:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-16T17:10:56.000Z (over 1 year ago)
- Last Synced: 2025-03-28T22:34:47.035Z (about 1 year ago)
- Topics: bash, fetch
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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