Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9323c781b9 | ||
|
|
aabaf72e46 | ||
|
|
022f19a459 |
@@ -15,12 +15,13 @@ by Sem van der Hoeven
|
||||
This is a project management tool straight from your terminal!
|
||||
It is written in python using the [curses library](https://docs.python.org/3/library/curses.html).
|
||||
|
||||
It gives a neat presentation of all your projects, which you can assign tasks to, which all have a unique status and description. This gives you an overview of the project's progress at a glance.
|
||||
It shows you a neat presentation of all your projects, which you can assign tasks to, which all have a unique status and description. This gives you an overview of the project's progress at a glance.
|
||||
|
||||
# Installation
|
||||
|
||||
### requirements:
|
||||
- python 3.x
|
||||
- curses (install with `pip install windows-curses`)
|
||||
|
||||
Download the file from the [releases page](https://github.com/SemvdH/terminal-project-management/releases) and run `python tpm.py`
|
||||
|
||||
|
||||
3
tpm.py
3
tpm.py
@@ -22,7 +22,6 @@ menu_width = 27
|
||||
controls_lines = 9
|
||||
editing = False
|
||||
|
||||
|
||||
STATUS_DONE = WHITE_GREEN
|
||||
STATUS_WORKING = WHITE_CYAN
|
||||
STATUS_IDLE = WHITE_MAGENTA
|
||||
@@ -281,6 +280,8 @@ def create_task(projects: list,project_index: int, stdscr):
|
||||
|
||||
window.refresh()
|
||||
|
||||
|
||||
|
||||
textpad = Textbox(scr2, insert_mode=True)
|
||||
task_name = textpad.edit()
|
||||
task_name = task_name[:-1]
|
||||
|
||||
Reference in New Issue
Block a user