diff options
| -rw-r--r-- | README | 2 | ||||
| -rwxr-xr-x | src/sb | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -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 @@ -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) |
