I don't actually need the year

Ricard Illa 2021-07-24 19:55:12 +02:00
parent c224c479eb
commit b9e38a1ce1
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ fmtter full icon fmt = fullFmtter full icon . formatTime defaultTimeLocale fmt
fmtTime :: FormatTime t => Bool -> t -> String
fmtTime full time =
let
date = fmtter full "calendar" "%y/%m/%d" time
date = fmtter full "calendar" "%m/%d" time
hour = fmtter full "clock" "%H:%M" time
in printf "%s%s%s%s " separator date separator hour