Go to file
Jesse Laprade ae36d923db
Update README.md
2018-09-15 01:18:16 -04:00
LICENSE updated via script 2018-03-16 09:53:12 -04:00
README.md Update README.md 2018-09-15 01:18:16 -04:00
args.rkt just added a rest to make things proper haha 2018-04-21 09:21:10 -04:00
config.rkt updated via script 2018-04-15 00:15:10 -04:00
init.rkt added a 'do not edit this file' message in the generated file 2018-04-21 09:54:15 -04:00
io.rkt updated via script 2018-04-15 00:15:10 -04:00
messages.rkt fixed typo 2018-07-30 22:28:42 -04:00
rodo added binary for easy use 2018-07-30 22:30:14 -04:00
rodo.rkt updated via script 2018-04-12 14:25:19 -04:00
screenshot.png Add files via upload 2018-09-13 01:16:48 -04:00
util.rkt removed and fixed an unnecessary comma 2018-05-18 23:36:46 -04:00

README.md

rodo

A simple to-do list tool for people who live on the command-line

By: Jesse Laprade

Table of Contents

Legend

Items marked like this are either instructions for running on the command line or code. Do not include the initial $ when running them.

Items marked like this are important.

Platforms

  • GNU/Linux

Requirements

Download

Via Browser

Download this repository by clicking the Clone or download button at the top right and then choosing Download ZIP from the drop-down list

Via Git

Run git clone https://github.com/m455/rodo at the command line if you use Git

Setup

GNU/Linux

Setup a $PATH

  1. Create a directory for your $PATH by running mkdir ~/bin/

  2. Associate your $PATH with the ~/bin/ folder you created by running echo "export PATH=~/bin:\$PATH" >> .bashrc

Using the binary

  1. Copy the rodo binary file to your $PATH folder by running cp /path/to/rodo ~/bin/

  2. Make the rodo binary file executable by running chmod u+x ~/bin/rodo

Creating a wrapper

  1. Create an empty wrapper file by running touch ~/bin/rodo.

  2. Add the following contents show below to it

#!/usr/bin/env bash
racket ~/path/to/rodo.rkt "$@"
  1. Save the file

For example, if you downloaded the project to your ~/downloads/ folder you would change the line

racket ~/path/to/rodo.rkt "$@"

to

racket ~/downloads/rodo/rodo.rkt "$@"

  1. Make the rodo wrapper file executable by runningchmod u+x ~/bin/rodo

Usage

init - Initializes a file in ~/.rodo/todo-list by default

ls - Lists items from the list

add - Adds an entry to the list

rm - Removes an item from the list

Note: You may have to run rodo ls to see which number corresponds to which item when removing items.

Examples

The examples below assume that you have rodo set up in your $PATH

init - rodo init

ls - rodo ls

add (Single-word entry) - rodo add bread

add (Multi-word entry) - rodo add "go to the bank"

rm - rodo rm 1

Configuring rodo

Right now, the configurations can be found in the config.rkt file. Settings such at program name, path and directory can be set here.