LUNA is a desktop app made for students to organise their daily tasks, optimized for use via a Command Line Interface (CLI) while still having the benefits of a Graphical User Interface (GUI).
- Add tasks
- Todo
- Event
- Deadline
- Delete tasks
- Mark and Unmark tasks as done
- Give tasks priorities
- List out the current tasks
- Save tasks and Exit
Adds a Todo task.
Format: todo TASK
Example:
todo Homework
todo Tutorial
Adds a Event task.
Format: event TASK /at ANYDATE
Example:
event Dad's Birthday dinner /at Next Monday, 7pm
event Career Fair /at Noon Tomorrow
Adds a Deadline task.
Format: deadline TASK /by YYYY-MM-DD
Example:
deadline CS2103T iP Submission /by 2022-09-16
deadline SEP Appication /by 2022-09-30
Deletes a task at the given INDEX
.
Format: delete INDEX
Example:
delete 1
Marks a task at the given INDEX
as done.
Format: mark INDEX
Example:
mark 1
Unmarks a previously marked task at given INDEX
as undone.
Format: unmark INDEX
Example:
unmark 1
Assigns a priority (high
, medium
, low
) to task at given INDEX
.
Format: priority INDEX PRIORITY
Example:
priority 1 low
priority 2 medium
priority 3 high
Displays the current tasks in the list
Format: list
Saves the current list and exits the app
Format: bye