You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
786 B

6 years ago
  1. # wtt
  2. Work Time Tracker - console time tracking app
  3. Add wtt to the path:
  4. ```
  5. export PATH="$PATH:/home/user/path/wtt"
  6. ```
  7. ### Use
  8. - Create new project
  9. ```
  10. wtt new ProjectName
  11. ```
  12. - Abbreviation:
  13. ```
  14. wtt n ProjectName
  15. ```
  16. - List projects
  17. ```
  18. wtt list
  19. ```
  20. - Abbreviation:
  21. ```
  22. wtt ls
  23. ```
  24. - Also can list with more details using:
  25. ```
  26. wtt ls -a
  27. ```
  28. - Start working on a project
  29. ```
  30. wtt start ProjectName
  31. ```
  32. - Abbreviation:
  33. ```
  34. wtt s ProjectName
  35. ```
  36. - Stop working on the current project
  37. ```
  38. wtt stop
  39. ```
  40. - Delete project
  41. ```
  42. wtt rm ProjectName
  43. ```
  44. - Show current working
  45. ```
  46. wtt current
  47. ```
  48. - Abbreviation:
  49. ```
  50. wtt c
  51. ```
  52. - Help:
  53. ```
  54. wtt help
  55. ```
  56. - Abbreviation:
  57. ```
  58. wtt h
  59. ```
  60. ![wtt](https://raw.githubusercontent.com/arnaucode/wtt/master/wtt_demo.gif "wtt")