All Projects → wayneashleyberry → Wunderline

wayneashleyberry / Wunderline

Licence: mit
✅️ Command-line client for Wunderlist, the easiest way to get stuff done.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wunderline

cheq
A command-line checklist app
Stars: ✭ 17 (-94.65%)
Mutual labels:  todo, gtd
todo-txt
Todo.txt syntax highlighter and helper extension for visual studio code.
Stars: ✭ 39 (-87.74%)
Mutual labels:  todo, gtd
nzb
Get Things Done® with nzb, a beautiful terminal interface for Nozbe. Inspired by Wunderline
Stars: ✭ 35 (-88.99%)
Mutual labels:  todo, gtd
Tracks
Tracks is a GTD™ web application, built with Ruby on Rails
Stars: ✭ 991 (+211.64%)
Mutual labels:  todo, gtd
Taskwarrior
Taskwarrior - Command line Task Management
Stars: ✭ 2,239 (+604.09%)
Mutual labels:  todo, gtd
Yokadi
Command line oriented, sqlite powered, todo list
Stars: ✭ 119 (-62.58%)
Mutual labels:  todo, gtd
Dstask
Single binary terminal-based TODO manager with git-based sync + markdown notes per task
Stars: ✭ 431 (+35.53%)
Mutual labels:  todo, gtd
elm-simple-gtd
Reimagination of SimpleGTD.com using Elm and Polymer.
Stars: ✭ 24 (-92.45%)
Mutual labels:  todo, gtd
gtd.vim
Getting things done with Vim
Stars: ✭ 42 (-86.79%)
Mutual labels:  todo, gtd
go-astitodo
Parse TODOs in your GO code
Stars: ✭ 58 (-81.76%)
Mutual labels:  todo
todoscreensaver
A screensaver that reads a text file from somewhere on your PC.
Stars: ✭ 20 (-93.71%)
Mutual labels:  todo
ToDue
An android app to keep track of your ToDo's
Stars: ✭ 23 (-92.77%)
Mutual labels:  todo
rofi-todo
📓 Minimal todo client for the rofi launcher
Stars: ✭ 20 (-93.71%)
Mutual labels:  todo
mark
mark is an markdown editor app for mac
Stars: ✭ 47 (-85.22%)
Mutual labels:  todo
Td
Your todo list in your terminal
Stars: ✭ 265 (-16.67%)
Mutual labels:  todo
OmniList
开源的时间管理App,基于Material Design设计
Stars: ✭ 61 (-80.82%)
Mutual labels:  gtd
Vscode Todo Highlight
a vscode extension to highlighting todos, fixmes, and any annotations...
Stars: ✭ 305 (-4.09%)
Mutual labels:  todo
Create React App Typescript Todo Example 2020
🚀 Create React App TypeScript Todo Example 2020
Stars: ✭ 255 (-19.81%)
Mutual labels:  todo
handscream
Time and task Management
Stars: ✭ 27 (-91.51%)
Mutual labels:  todo
react-todo
A super accessible and easy to use todo list.
Stars: ✭ 13 (-95.91%)
Mutual labels:  todo

Wunderlist has shut down, so unfortunately wunderline no longer serves a purpose.

Wunderline

Wunderlist for your command line!

Build Status npm styled with prettier

Installation

npm install -g wunderline

Authentication

Wunderline requires you to create your own Wunderlist application and store the client id and an access token locally. You can create a new application here.

When creating an application you will be asked for an app url and an auth callback url, you can just use dummy values for these.

Once that's done, click CREATE ACCESS TOKEN as highlighted here:

access-token

Your ACCESS TOKEN will show up above

access-token modal

Now you can run wunderline auth and enter the values.

Usage

$ wunderline --help

Commands:

    auth            Authenticate Wunderline
    add [task]      Add a task to your inbox
    done            Mark a task as done
    inbox           View your inbox
    starred         View starred tasks
    today           View tasks due today
    week            View tasks due this week
    all             View all of your tasks
    overdue         View overdue tasks
    search [query]  Search your tasks
    list [query]    Search your lists
    lists           List your lists
    open            Open Wunderlist
    export          Export your data
    whoami          Display effective user
    gc              Delete completed tasks
    set-platform    Set your preferred application platform
    flush           Flush the application cache
    help [cmd]      display help for [cmd]

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

Adding Tasks

Add tasks to your inbox.

$ wunderline add Hello, World!

The add command also supports creating tasks from stdin.

$ cat todo.txt | wunderline add --stdin

You can also add tasks to a list, that list will be created if it doesn't exist.

$ wunderline add Hello, World! --list Greetings

Due dates are now supported using one of the following options.

$ wunderline add Hello, World! --today --tomorrow --due 2015-12-25

You can add subtasks at task creation time.

$ wunderline add 'Run a marathon' --subtask 'Train for the marathon' --subtask 'Register for the marathon'

Completing Tasks

Tasks can be completed using the done subcommand.

$ wunderline done

completing tasks

Viewing Lists

All of Wunderlists smart lists are supported, so there are various ways to see what tasks you have to do.

$ wunderline inbox
$ wunderline starred
$ wunderline today
$ wunderline week
$ wunderline all

Alternatively, you can view any other list by using the list subcommand.

$ wunderline list shopping

Open

Open Wunderlist, defaults to opening the web app.

$ wunderline open

The only other platform currently supported is mac, use the set-platform command to change your settings.

$ wunderline set-platform mac

Export

Exports your data to stdout.

$ wunderline export > export.json

Filtering with jq

The export command will give you all of your data, unfiltered, which can be a lot. If you'd like to search, filter or manipulate your data then check out jq.

Here are some examples, filtering out completed and starred tasks.

wunderline export | jq '.data.lists[].tasks[] | select(.completed == true)'
wunderline export | jq '.data.lists[].tasks[] | select(.starred == true)'

Bonus Points

Ack / Ag

You could search for the word "todo" in a project and pipe the input into wunderline. Each line will be parsed and turned into a task, be careful because this could result in a lot of tasks!

This might be a terrible idea, even useless at best, but hopefully it will get you thinking.

$ ag todo --nocolor --nofilename | wunderline add -s

Debugging

wunderline uses request so if you want to inspect api requests just set the NODE_DEBUG variable.

$ NODE_DEBUG=request wunderline inbox

License

MIT © Wayne Ashley Berry

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].