Crates.io | work |
lib.rs | work |
version | 0.4.2 |
source | src |
created_at | 2020-07-21 15:45:54.341585 |
updated_at | 2020-12-22 14:13:16.586711 |
description | A simple cli todo manager |
homepage | https://github.com/g-w1/work |
repository | https://github.com/g-w1/work |
max_upload_size | |
id | 267666 |
size | 1,114,428 |
use a sqlite database with rusqlite
command line parsing with clap.rs
fuzzy finder built in with skim
config file parsing with confy
work ls
to list all of your events.
Ex:
[user@hostname ~]$ work ls
________________________________________
DONE| ID| SUMMARY
----------------------------------------
❌ | 1 | test
❌ | 2 | another another test
✅ | 3 | another test
----------------------------------------
work add <string of an event to add>
add an event. Ex: work add "test"
work rm <event id>
to remove an event. Ex: work rm 1
work rm fzf
to remove an event or multiple through a fuzzy finder. Search through the events and press tab to select multiple.
work rm all
delete the whole database of events.
work edit <event id>
get to a prompt to edit an event. This will allow you to edit the name and make it done. Ex: work edit 1
work edit fzf
the same as work rm fzf
except multiple are not allowed.
work done <event id>
Mark an event as done. Ex: work done 1
work done fzf
the same as work rm fzf
except marking events done. Multiple are allowed.
You will find a worktodo.toml
file in ~/.config/worktodo/
(I think it will be on Library/Preferences/rs.worktodo/worktodo.toml
on macos because that is the default config location) this is the method of configuration. The settings are self explanatory. The config file will be auto generated on the first use of work.
~/.config/worktodo/worktodo.toml
emojis = true
backticks = true
verbose = true
show_id_in_ls = true
ask_for_confirm = true
The database file will be stored at ~/.local/share/worktodo/work.db
It is a sqlite database.
Library/Preferences/rs.worktodo/worktodo.toml
.It is on crates.io. Yay!
cargo install work
You can also
git clone https://github.com/g-w1/work
cd work
cargo install --path .