Created
May 21, 2014 21:30
-
-
Save smacarthur/0db67a07f19b539a817c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias todo.now='geeknote create --tags @work,1-Now --title ' | |
alias todo.next='geeknote create --tags @work,2-Next --title ' | |
alias todo.soon='geeknote create --tags @work,3-Soon --title' | |
alias todo.later='geeknote create --tags @work,4-Later --title' | |
alias todo.someday='geeknote create --tags @work,5-Someday --title' | |
alias todo.waiting='geeknote create --tags @work,6-Waiting --title' | |
alias show.todo.all='geeknote find --tags @work --notebooks "Actions Pending" ' | |
alias show.todo.now='geeknote find --tags @work,1-Now --notebooks "Actions Pending" ' | |
alias show.todo.next='geeknote find --tags @work,2-Next --notebooks "Actions Pending" ' | |
alias show.todo.soon='geeknote find --tags @work,3-Soon --notebooks "Actions Pending" ' | |
alias show.todo.later='geeknote find --tags @work,4-Later --notebooks "Actions Pending" ' | |
alias show.todo.someday='geeknote find --tags @work,5-Someday --notebooks "Actions Pending" ' | |
alias show.todo.waiting='geeknote find --tags @work,6-Waiting --notebooks "Actions Pending"' | |
alias todo=show.todo.all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment