-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
116 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*/**.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,102 @@ | ||
# BashTodo | ||
|
||
Just a basic todo app for your terminal. | ||
This is a super simple todo app. You can sort your tasks into projects and sort your task into three columns, _"TODO"_, _"DOING"_ and _"DONE"_. Every created tasks gets automatically assigned an id. Every command that changes a task requires a task ID. | ||
|
||
 | ||
## Commands | ||
|
||
### **init** | ||
|
||
## Commands | ||
- add (adds a task) | ||
- delete (deletes a task) | ||
- todo (moves task to TODO) | ||
- doing (moves task to DOING) | ||
- done (moves task to DONE) | ||
- change (changes task) | ||
Initialize todos. | ||
 | ||
|
||
### **new_project** _np_ | ||
|
||
_optional argument: <NEW_PROJECT_NAME>_ | ||
|
||
Creates a new project | ||
|
||
 | ||
|
||
### **switch_projects** _sp_ | ||
|
||
_optional argument: <PROJECT_NAME>_ | ||
|
||
Switches focus to another project | ||
|
||
 | ||
|
||
### **projects** _p_ | ||
|
||
Lists all projects | ||
|
||
 | ||
|
||
### **change_current_project** _ccp_ | ||
|
||
_optional argument: <NEW_PROJECT_NAME>_ | ||
|
||
Renames the current project | ||
|
||
 | ||
|
||
### **delete_project** _dp_ | ||
|
||
_optional argument: <PROJECT_NAME>_ | ||
|
||
Deletes a todo project | ||
|
||
 | ||
|
||
### **add** | ||
|
||
**argument: <TASK_DESCRIPTION>** | ||
|
||
Adds a new task to Todo | ||
|
||
 | ||
|
||
### **todo** | ||
|
||
**argument: <TASK_ID>** | ||
|
||
Moves a task to Todo | ||
|
||
 | ||
|
||
### **doing** | ||
|
||
**argument: <TASK_ID>** | ||
|
||
Moves a task to Doing | ||
|
||
 | ||
|
||
### **done** | ||
|
||
**argument: <TASK_ID>** | ||
|
||
Moves a task to Done | ||
|
||
 | ||
|
||
### **ls** | ||
|
||
Lists tasks in current project | ||
|
||
 | ||
|
||
### **change** | ||
|
||
**argument: <TASK_ID>** | ||
|
||
Changes task | ||
|
||
 | ||
|
||
### **delete** _del_ | ||
|
||
**argument: <TASK_ID>** | ||
|
||
Deletes task | ||
|
||
 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters