LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

moro

command-line work hours tracker

TLDR

Clock in (start work timer)
$ moro hi
copy
Clock in at a specific time
$ moro hi [09:30]
copy
Clock out (stop work timer)
$ moro bye
copy
Set break time in minutes
$ moro break [30]
copy
Show today's work report
$ moro report
copy
Show report for all days
$ moro report --all
copy
Set default break time
$ moro config --break [45]
copy
Clear all recorded data
$ moro clear
copy

SYNOPSIS

moro [command] [options]

DESCRIPTION

moro is a command-line work hours tracker. It records clock in/out times and calculates total work hours minus breaks.The formula is: (clock out time) - (clock in time) - (breaks) = work hours. Default break is 30 minutes.

PARAMETERS

hi [HH:MM]

Clock in. Optionally specify a past start time.
bye [HH:MM]
Clock out. Optionally specify a past end time.
break MINUTES
Set break time in minutes.
report [--all]
Display work report. Use --all to show all days.
config --break MINUTES
Set default break time.
clear
Clear all recorded data.
--help
Display help information.

CAVEATS

Node.js based. Simple flat file storage. Local machine tracking only. The project is deprecated; the released npm version is considered the only stable version.

HISTORY

moro was created as a simple time tracker for developers who work from the terminal.

SEE ALSO

timew(1), watson(1)

Copied to clipboard
Kai