Skip to content

Commit

Permalink
increased default mbu to one minute [2m0s]
Browse files Browse the repository at this point in the history
  • Loading branch information
advdv committed May 16, 2015
1 parent 0225f44 commit d9d80c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ __Features:__
- The timer __automatically starts__ when you switch to a (new) branch using `git checkout`
- The timer __automatically pauses__ when it doesn't detect any file activity for a while
- The time you spent is automatically added to the next `git commit` message
- Time is incremented by a "minimal billable unit" (MBU).
- Time is incremented by a "minimal billable unit" (MBU), one minute by default.
- No internet or account required and completely free& open source

__Currently Supported (see roadmap):__
Expand Down
2 changes: 1 addition & 1 deletion daemon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
var Version = "0.0.0"
var Build = "gobuild"

var mbu = flag.Duration("mbu", time.Second*10, "The minimal billable unit")
var mbu = flag.Duration("mbu", time.Minute, "The minimal billable unit")
var bind = flag.String("bind", ":0", "Address to bind the Daemon to")
var force = flag.Bool("force", false, "Force start the Daemon")

Expand Down

0 comments on commit d9d80c5

Please sign in to comment.