mirror of
https://codeberg.org/gigirassy/energonfetch.git
synced 2026-08-30 15:27:40 +00:00
36 lines
1.3 KiB
Markdown
36 lines
1.3 KiB
Markdown
# energonfetch
|
|
|
|
yet another fetching program
|
|
|
|
uses an energon cube.
|
|
|
|
``./energonfetch 0.00s user 0.00s system 71% cpu 0.007 total``
|
|
|
|
yes, it has high cpu usage for 0.007 seconds. this is a necessity for how fast it is. try harder.
|
|
|
|
```
|
|
fedora linux 43 (forty three) <- os
|
|
amd64 <- arch +------+
|
|
6.17.12-300.fc43.x86_64 <- kernel / /|
|
|
intel(r) core(tm) i5-6400 cpu @ 2.70ghz-3.30 ghz <- cpu +------+ |
|
|
6.54 gb / 15.51 gb <- memory | | +
|
|
356 mb / 8.00 gb <- swap | |/
|
|
bspwm <- desktop +------+
|
|
250.18 gb / 951.28 gb btrfs <- storage
|
|
```
|
|
|
|
## install
|
|
|
|
### universal
|
|
typical go binary process.
|
|
```
|
|
git clone https://codeberg.org/gigirassy/energonfetch && cd energonfetch
|
|
go build -ldflags="-s -w" -o energonfetch
|
|
sudo cp energonfetch /usr/bin/
|
|
```
|
|
### rpm-family linux distros
|
|
via COPR, prebuilt binaries are available for fedora 41+ (arm64 and x86_64), opensuse leap/tumbleweed (arm64, x86_64, and i586+ via tumbleweed), and mageia 8+ (arm64, x86_64, and i586+). to install, follow this process.
|
|
```
|
|
sudo dnf copr enable gigirassy/energonfetch
|
|
sudo dnf install energonfetch
|
|
``` |