Crates.io | quest-tui |
lib.rs | quest-tui |
version | 0.2.0 |
source | src |
created_at | 2021-03-19 09:51:54.515507 |
updated_at | 2021-03-31 08:09:02.672363 |
description | A crossplatform TUI todo list |
homepage | https://github.com/frustak/Quest |
repository | https://github.com/frustak/Quest |
max_upload_size | |
id | 370928 |
size | 164,644 |
a simple todo list terminal user interface
Steps to install and run the application in your terminal.
cargo install quest-tui
Clone the project then:
cargo build
to build iitcargo run
to run it directlyafter installing with cargo, you can run the command quest-tui
Quest uses directories-next to save configuration and data files, config directory:
$XDG_CONFIG_HOME/quest or $HOME/.config/quest
{FOLDERID_RoamingAppData}/quest/config
$HOME/Library/Application Support/quest
A config file is created if one does not exists already when you run the app.
default configs:{
"colors": {
"foreground": "White",
"background": "Black",
"selection_fg": "Black",
"selection_bg": "Yellow",
"check_sign": "Green"
},
"keybindings": {
"exit_app": {
"Char": "q"
},
"new_quest": {
"Char": "n"
},
"check_and_uncheck_quest": "Enter",
"list_up": "Up",
"list_down": "Down",
"delete_quest": "Delete",
"exit_adding": "Esc",
"save_quest": "Enter"
}
}
You can refer to Color and Keybinding for all possible configs.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. guide
Distributed under the MIT License. See LICENSE for more information.