https://github.com/lycuid/smolprog
Command line utility for system status monitoring.
https://github.com/lycuid/smolprog
system-monitoring utility-scripts
Last synced: 5 months ago
JSON representation
Command line utility for system status monitoring.
- Host: GitHub
- URL: https://github.com/lycuid/smolprog
- Owner: lycuid
- License: gpl-3.0
- Created: 2021-11-27T17:11:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-01T18:58:55.000Z (over 1 year ago)
- Last Synced: 2025-01-12T06:40:15.159Z (12 months ago)
- Topics: system-monitoring, utility-scripts
- Language: Go
- Homepage:
- Size: 72.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# smolprog
**S**ystem **M**ontitoring and **O**rdered **L**ogging **PROG**ram.
This is pretty much similar to another, very well known, open source project called [slstatus](https://tools.suckless.org/slstatus/).
This program runs different procedures (***logger***) in seperate threads and outputs the values in an ordered manner to ***stdout***.
## Installation
```sh
sudo make install
```
build using `go build`.
## Use Case:
I personally use this to set the `WM_NAME` attribute of the root X11 window, which is then read and displayed by my statusbar: [clubar](https://github.com/lycuid/clubar/) (similar to [dwm's](https://dwm.suckless.org/) statusbar).
Example:
```sh
smolprog | xargs -i xsetroot -name {}
```