Issue #10
new
I want to be able to see how much time I have spent today, since midnight.
Currently I am using
$sampleage <= 13:00 ==> tag Today,
but it is not since midnight.
What I want is the $today
variable:
$date == $today => tag Today, week $date == week $today => tag This-week, month $date == month $today => tag This-month, year $date == year $today => tag This-year,
Comments (8)
-
repo owner -
reporter I agree. Do you want me to edit this issue and open another one?
-
repo owner If you can open a new one, that would be helpful.
-
reporter - edited description
-
+1 Any update on this?
-
repo owner Not really, other projects too important right now. Is that something that would be nice to have for you, or is it a serious show-stopper?
-
I found another way, I used this:
arbtt-stats --filter='$date>='`date +"%Y-%m-%d"`
-
repo owner That’s the sprit! :-)
- Log in to comment
There are two issues here:
$today
(or better:$now
, since it is a datetime). Quite a reasonable request.$date
and expressions like(year $date)
in strings. That is more tricky, and needs thought.