here is my "/usr/share/linkmeter/alarm" contents
#!/bin/sh
al_set() {
local AL="LMST,al,"
local PREMAIN=$al_probe
local VAL=$1
while [ $PREMAIN -gt 0 ] ; do
AL="${AL},,"
PREMAIN=$((PREMAIN-1))
done
[ "$al_type" == "H" ] && AL="${AL},"
lmclient ${AL}${1}
}
# The entire...