Go to file
m455 d1bcc76328 character error was fixed originally, didn't notice i was trying to use a unix ampersand in the test haha 2019-02-07 00:45:24 -05:00
LICENSE prefixed all of rodo.rkt and args.rkt 2018-10-10 13:55:52 -04:00
README.md character error was fixed originally, didn't notice i was trying to use a unix ampersand in the test haha 2019-02-07 00:45:24 -05:00
args.rkt removed the negative number bug, and stopped allowing symbols 2019-02-07 00:27:32 -05:00
config.rkt prefixed util.rkt 2018-10-10 14:27:03 -04:00
init.rkt cleaning up all of this code, and commenting complex functions 2019-02-05 21:20:28 -05:00
messages.rkt removed dots from prompt. they were distracting 2019-01-31 23:01:57 -05:00
rodo.rkt replaced nested maps with (map (compose ...) ...) 2019-02-06 22:56:28 -05:00
screenshot.png Add files via upload 2018-09-13 01:16:48 -04:00
util.rkt replaced nested maps with (map (compose ...) ...) 2019-02-06 22:56:28 -05:00

README.md

rodo

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

By Jesse Laprade

Todo

  • Only allow quoted items to be added
  • Add color option to config.rkt file
  • Encrypt todo-list file

Screenshot

Table of Contents

Platforms

  • GNU/Linux
  • Windows Subsystem for Linux

Requirements

Downloading

  • Via GitHub on a web browser

    1. Click the Clone or download button at the top of this page
    2. Click Download ZIP from the drop-down list
  • Via Git

    • Run git clone https://github.com/m455/rodo on the command line

Setup

Follow the steps below to set up rodo on the available platform(s)

GNU/Linux

Follow the steps below to set up rodo on GNU/Linux

Set up a $PATH

  1. Create a directory for your $PATH by running mkdir ~/bin/
  2. Add your newly-created ~/bin/ to your $PATH by running echo "export PATH=~/bin:\$PATH" >> .bashrc

Adding rodo to your $PATH

  1. Create a file in your ~/bin/ directory with the following contents in it:
#!/usr/bin/env bash
racket ~/path/to/rodo.rkt "$@"

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 "$@".

If you prefer to use an executable, rather than a wrapper, you can create an executable binary file with raco exe file-name-here.rkt.

  1. Save the file

  2. Make the file executable by running chmod u+x ~/bin/name-of-your-file

Windows Subsystem for Linux

Follow the steps below to set up rodo on GNU/Linux

Set up a $PATH

  1. Create a directory for your $PATH by running mkdir ~/bin/
  2. Add your newly-created ~/bin/ to your $PATH by running echo "export PATH=~/bin:\$PATH" >> .bashrc

Adding rodo to your $PATH

  1. Create a file in your ~/bin/ directory with the following contents in it:
#!/usr/bin/env bash
racket ~/path/to/rodo.rkt "$@"

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 "$@".

If you prefer to use an executable, rather than a wrapper, you can create an executable binary file with raco exe file-name-here.rkt.

  1. Save the file

  2. Make the file executable by running chmod u+x ~/bin/name-of-your-file

Usage

Type rodo plus one of the options below with a space between rodo and the option.

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.

Usage examples

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

rodo init

rodo ls

rodo add bread (Single-word entry)

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

rodo rm 1

Configuring rodo

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