From 98e07b6a18d552aed1a33fa776ab3b2eeead5eaa Mon Sep 17 00:00:00 2001 From: RLF Date: Wed, 10 Jan 2024 01:57:50 -0500 Subject: [PATCH] initial version --- uno-stats-monitor/unomond/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 uno-stats-monitor/unomond/README.md diff --git a/uno-stats-monitor/unomond/README.md b/uno-stats-monitor/unomond/README.md new file mode 100644 index 0000000..2166b93 --- /dev/null +++ b/uno-stats-monitor/unomond/README.md @@ -0,0 +1,28 @@ +# UnoMonD + +This is the C version of the bash script that also handles IR codes. + +It has a configuration file that is used to define pretty much everthing. + + +## Requires + +gcc +libconfig (https://hyperrealm.github.io/libconfig/) + + +## Compiling + +~~~ +#!/bin/sh +CC="gcc" + +# Debug -Wconversion +CFLAGS="-Wall -Wextra -g -I. -I/usr/include -lconfig" + +# Release +#CFLAGS="-O2 -s -I. -I/usr/include -lconfig" + +$CC monitor_daemon.c gather_stats.c $CFLAGS -o unomond +~~~ +