Ecosyste.ms: Awesome

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

https://github.com/WhoseTheNerd/ramfetch

a fetch which displays memory info using /proc/meminfo
https://github.com/WhoseTheNerd/ramfetch

Last synced: about 2 months ago
JSON representation

a fetch which displays memory info using /proc/meminfo

Lists

README

        



ramfetch


A fetch which displays memory info using /proc/meminfo.















ramfetch is a fetch which displays memory info using /proc/meminfo. if you want to install ramfetch follow the steps below. it's really simple. you can also test ramfetch without installing it.

ramfetch works on:

✓ Linux

✓ Android, using termux (no root)

NOTE: You cannot install ramfetch on android. You need to add ramfetch to your PATH.

## Requirements

`bash` for ramfetch to work.

`make` to install ramfetch. (optional)

## Install

### AUR
To install ramfetch from the AUR. install it by using your favorite AUR helper. (e.g yay) thanks to [jahway603](https://github.com/jahway603)
```bash
$ yay -S ramfetch-git
```
NOTE: The AUR version installs the stock version of ramfetch. not the christmas one. while the github method does.

### Github
Clone this repo.
```bash
$ git clone https://github.com/gentoo-btw/ramfetch
```
Install ramfetch using `make install`.
```bash
# make install
```

### Manual install
Install ramfetch using `install`
```bash
# install -Dm755 ramfetch /usr/local/bin/ramfetch
```
## Reinstall
Reinstall ramfetch using `make`.
```bash
# make reinstall
```

### Manual Reinstall
Remove ramfetch and install ramfetch using `install` and then execute it.
```bash
# rm -f /usr/local/bin/ramfetch
# install -Dm755 ramfetch /usr/local/bin/ramfetch
$ ramfetch
```

## Uninstall
Uninstall ramfetch using `make`.
```bash
# make uninstall
```
### Manual Uninstall
Uninstall ramfetch by removing the ramfetch file.
```bash
# rm -f /usr/local/bin/ramfetch
```