Go to file
Jesse Laprade 2526ff0bf6
Update README.md
2018-09-07 21:01:00 -04:00
LICENSE updated via script 2018-03-16 09:53:12 -04:00
README.md Update README.md 2018-09-07 21:01:00 -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
util.rkt removed and fixed an unnecessary comma 2018-05-18 23:36:46 -04:00
wrapper-example added a wrapper for ~/bin 2018-04-17 23:21:47 -04:00

README.md

rodo

An easy-to-use todo list program for people who live on the command line written in Racket.

Platforms

  • GNU/Linux
  • Microsoft Windows
  • OS X

Requirements

  • Racket 6.x
  • Git (Optional)

Download

Download this repository by clicking the Clone or download button at the top, then click Download ZIP

or

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

Setting up rodo

GNU/Linux

Using the executable binary

Create a $PATH if you haven't done so already by running:

echo "export PATH=~/bin:\$PATH" >> .bashrc

Make the actual directory for your $PATH:

mkdir ~/bin/

Add the rodo binary to your $PATH folder (in your ~/bin/ folder if you followed the instructions above) and make sure it's executable:

chmod u+x ~/bin/rodo

Using and creating a wrapper

Create a file called rodo in your $PATH folder (in your ~/bin/ folder if you followed the instructions above) and add the following contents to it:

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

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

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

to

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

Make the rodo file executable:

chmod u+x ~/bin/rodo

Windows

Instructions coming soon

Mac

Instructions coming soon

Usage

The below examples assume that you have rodo set up in your $PATH folder. If you don't, you would simply go to the directory of the rodo.rkt file and use ./rodo <command> instead.

init

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

Example: rodo init

ls

Lists items from the list

Example: rodo ls

add

Adds an entry to the list

Adding a single-word entry

Example: rodo add bread

Adding a multi-word entry

Example: rodo add "go to the bank"

rm

Removes an item from the list

Example: rodo rm 1

Note: You may have to run rodo ls to see which number corresponds to which item to remove it.

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.