aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspv <spv@spv.sh>2025-11-25 11:45:47 -0500
committerspv <spv@spv.sh>2025-11-25 11:45:47 -0500
commit6a7f7db435465564ea92a3d544bf78549d5ab54c (patch)
tree7b7ea4a5ce0157c37154378001ee84dd07909dc3
parent107cb3fcf121d42d5616e9b285c105dcd1b1f15b (diff)
wip code cleanup / specify date for `sb` summation on cliHEADmaster
-rw-r--r--README2
-rwxr-xr-xsrc/sb5
2 files changed, 5 insertions, 2 deletions
diff --git a/README b/README
index c5a9f02..1481e00 100644
--- a/README
+++ b/README
@@ -25,7 +25,7 @@ roadmap
(n/a) drop privs (add user to input group)
(x) where to store reports (~~/var dir?~~ ~/.local/stroke_buddy)
[ ] respond to plug-n-play
-[ ] sensible code organization
+[~] sensible code organization / cleanup
[x] systemd user service
license
diff --git a/src/sb b/src/sb
index a3bc968..640cad6 100755
--- a/src/sb
+++ b/src/sb
@@ -12,10 +12,13 @@ function count_for_date {
| cut -d',' -f2)
lines=$(($lines+$hourly_presses))
-# lines=$(($lines+$hourly));
done
echo $lines
}
+if [ -n "$1" ]; then
+ TODAY=$1
+fi
+
echo $(count_for_date $TODAY)