@hackage slate0.4.0.0
A note taking CLI tool.
Installation
Dependencies (4)
- base >=4.7 && <5
- directory >=1.3
- filepath >=1.4
- optparse-applicative >=0.14 Show all…
Dependents (0)
slate - a note taking tool.
A simple tool to take notes from your terminal.
Generates markdown task lists.
Lists are stored in ~/.config/slate/ and their default name is the name of your current directory. You can use any other name you want using the --name option.
Install
$ stack install slate
Usage
$ slate --help slate - a note taking tool. Usage: slate COMMAND Slate Available options: -h,--help Show this help text Available commands: add Add a note. done Mark a note as done. todo Mark a note as to-do. remove Remove a note. display Display a slate. rename Rename a slate. wipe Wipe a slate. $ slate add "My *first* note." $ slate add "New note!" $ slate display 00 - My first note. 01 - New note! $ slate done 0 $ slate display00 - My first note.01 - New note! $ slate display --only=todo 01 - New note! $ slate add "Fake note" $ slate display00 - My first note.01 - New note! 02 - Fake note $ slate remove 2 $ slate display00 - My first note.01 - New note! $ slate wipe --only=todo $ slate display00 - My first note.$ slate todo 0 $ slate display 00 - My first note.