All Projects → nielssp → ctodo

nielssp / ctodo

Licence: MIT license
A simple ncurses-based tasklist manager

Programming Languages

c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to ctodo

outspline
Extensible outliner and personal time organizer to manage todo lists, schedule tasks, remind events.
Stars: ✭ 41 (+32.26%)
Mutual labels:  todolist, tasklist
todo list rust
Simple Ncurses Todo List ☑
Stars: ✭ 19 (-38.71%)
Mutual labels:  ncurses, todolist
cxxcurses
Header only ncurses wrapper
Stars: ✭ 24 (-22.58%)
Mutual labels:  ncurses
todo-list
A practical web application built with Node.js, Express, and MySQL for you to readily record, view, and manage your tasks with an account: Create, view, edit, delete, filter, and sort expenses are as easy as pie 🥧
Stars: ✭ 18 (-41.94%)
Mutual labels:  todolist
ncgrep
NCGREP, which is based on ncurses library to provide user interface, is a grep tool for searching text on target directory.
Stars: ✭ 23 (-25.81%)
Mutual labels:  ncurses
ngp
Ncurses code parsing tool
Stars: ✭ 52 (+67.74%)
Mutual labels:  ncurses
swirc
Lightweight terminal based ICB and IRC client
Stars: ✭ 20 (-35.48%)
Mutual labels:  ncurses
ToDo-List-App
An elegant UI focused ToDoList by Firebase Cloud Firestore.
Stars: ✭ 16 (-48.39%)
Mutual labels:  todolist
gtasks
A CLI client for Google Tasks, written in Go
Stars: ✭ 54 (+74.19%)
Mutual labels:  tasklist
vtGBte
A simple GameBoy tile editor written in C using ncurses
Stars: ✭ 25 (-19.35%)
Mutual labels:  ncurses
ToDoList
A dynamic and aesthetic To-Do List Website built with HTML, CSS, Vanilla JavaScript.
Stars: ✭ 87 (+180.65%)
Mutual labels:  todolist
spotify-terminal
Terminal application to play/control Spotify.
Stars: ✭ 61 (+96.77%)
Mutual labels:  ncurses
ShiTTYchat
A bare-bones terminal chat room.
Stars: ✭ 24 (-22.58%)
Mutual labels:  ncurses
xhznl-todo-list
✨ 一个使用electron + vue + electron-builder开发的跨平台todolist(便签)桌面应用
Stars: ✭ 110 (+254.84%)
Mutual labels:  todolist
csol
A small collection of solitaire/patience games (Klondike, FreeCell, Spider, Yukon, etc.) to play in the terminal
Stars: ✭ 25 (-19.35%)
Mutual labels:  ncurses
react-todo
🥇 适合新手入门React的Todo-List教程,总计7课时。
Stars: ✭ 21 (-32.26%)
Mutual labels:  todolist
notnow
A terminal based task and TODO management software.
Stars: ✭ 25 (-19.35%)
Mutual labels:  todolist
api
Mirror of vikunja from https://code.vikunja.io/api
Stars: ✭ 119 (+283.87%)
Mutual labels:  todolist
ttdl
TTDL - Terminal Todo List Manager
Stars: ✭ 91 (+193.55%)
Mutual labels:  todolist
Nickel
Micro tasks manager written in pure Python
Stars: ✭ 18 (-41.94%)
Mutual labels:  todolist

ctodo

A simple ncurses-based task list manager

Website: http://ctodo.apakoh.dk

Screenshot.

License

Copyright (C) 2012 Niels Sonnich Poulsen (http://nielssp.dk)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Requirements

Linux

  • ncurses
  • A C-compiler like gcc
  • cmake (not actually necessary)

Windows

  • Windows XP or newer

Installation

Linux

  • Run cmake:

      cmake .
    
  • Compile:

       make
    
  • Install:

       make install
    

Windows

Run the installer, e.g. ctodo-1.1-setup.exe.

Usage

Linux

Run from a console using:

ctodo

This will create a todo.txt file in the current directory or open the file if it exists.

Alternatively you can run ctodo using:

ctodo someotherfile.txt

Which will open/create someotherfile.txt in the current directory.

Windows

Right click in any directory (or on the desktop) and open the New-menu. If ctodo was installed using the installer, the option Task List should be available. Click on it.

This will create an empty task list which you can open with ctodo by double clicking on it (if you installed using the installer).

Commands

  • Navigation:

    Use UP and DOWN arrows to move between tasks (or J and K).

    PAGE UP moves 5 tasks up and PAGE DOWN moves 5 tasks down.

    HOME and g moves to the top of the list and END and G moves to the bottom.

  • Managing tasks:

    SPACE and ENTER checks/unchecks the selected task.

    D and DELETE deletes the selected task.

    SHIFT-UP and M moves the selected task up and SHIFT-DOWN and SHIFT-M moves the selected task down.

    Press E to edit the description of the selected task.

    Press SHIFT-E to delete the current task description and create a new one.

    Press N, SHIFT-A or INSERT to create a new task at the bottom of the list.

    Press SHIFT-I to insert a new task at the top of the list.

    Press I to insert a new task before the selected task, and A to insert a new task after the selected task.

  • In input-mode:

    Press ENTER to save the string.

    Press CTRL-C or CTRL-D to cancel.

  • Managing the task list:

    Press T to edit the title of the task list.

    Press SHIFT-T to delete the current title and create a new one.

    Press S to save the list.

    Press R to reload the list (discard unsaved data).

    Press Q to save the list and quit.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].