-
Notifications
You must be signed in to change notification settings - Fork 17
/
README.txt
131 lines (86 loc) · 6.72 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
= otask
* https://github.com/ttscoff/OTask
== DESCRIPTION:
A CLI for OmniFocus. I had an AppleScript/Ruby monstrosity that actually worked with TaskPaper, The Hit List, Things and OmniFocus, but that one got out of hand. I took the good parts of it, concentrated on OmniFocus and converted it to `appscript`. The result is OTask.
== FEATURES/PROBLEMS:
* Natural language date entry for due dates
* TextMate style fragment matching for projects and contexts
* Include notes inline or by piping in
* Optional Growl notifications
* No repeating tasks
== SYNOPSIS:
OTask uses a custom syntax to allow entry of the various elements of an action in one line of text. The following formats can be used anywhere in the line, with the exception of the flag (!) which must be the last character on the line, preceded by a space.
* @context (fragment, no spaces)
* #project (fragment, no spaces)
* due(due date) (can be shortened as d(date))
* create(creation date)(can be shortened as c(date))
* (notes)
* ! (sets task as flagged)
Contexts and project specifiers should not include spaces. The algorithm that is used will find the best match for the string you give it, so you only need to include enough of it to distinguish it from other contexts or projects. For example, if I were going to put an action directly into my Markdown QuickTags folder, I could just use "#mdqt" and it will find it. "@corr" will get me the "correspondence" context.
Dates are entered in natural language format. You can type "tomorrow," "in 3 days," "next tuesday," etc. You can also use "+3" to set a date 3 days from the current day, "+7" for a week, and so on.
### Command line options
-h, --help Displays help message
-q, --quiet Output as little as possible, overrides verbose
-V, --verbose Verbose output
-g, --growl Use Growl for feedback
-l --list List available projects or contexts
-c Makes --list output space separated strings
### Example usage
$ otask "Write a letter to mom"
This will put a task into your inbox with the name "Write a letter to mom." Nothing else will be set, it will wait there for you to pick it up.
$ otask -g "Pick up the kids from school @err #single due(today 3pm) !"
This creates a new task in a project called Single Tasks, with a context of "errands", a due date of 3pm on the current day, and flags the task.
The task will go to your inbox by default, and--if provided--project and context will be set. Your settings for automatic cleanup will determine what happens after that. Task elements not specified are left unset.
The `-g` parameter gives us our feedback via Growl, which is handy if you're calling it from a background script or application launcher like Quicksilver or LaunchBar.
$ otask "Brainstorm for the morning meeting (Bill had some ideas, it might be worth checking in with him this afternoon) d(tomorrow 8am) #hipstartup @think"
This will create a task with a note. Everything in parenthesis is removed from the task name and placed into the notes of the action, sans parenthesis. Note that the due date prefix can be shortened to just "d".
OTask looks for notes in parenthesis, but it can also receive piped input from other applications as a note for the task. If you wanted to include text from a file, the output of a command or the plain-text contents of your clipboard, you can just pipe the output into the command, specifying the rest of the options as usual.
$ pbpaste | otask "Notes from the morning meeting @ref"
That would take the current contents of your clipboard and make them the attached note on the "Notes from the morning meeting" task (with the context "reference").
The `-l` (list) option can receive either p (project) or c (context), as well as an optional `:[filter]`` on the argument. For example `otask -l c:email` will show all contexts containing a fuzzy match of 'email'.
The -c switch can be used with the -l flag to output space-separated lists for shell completion.
#### Calling from LaunchBar (et al.)
You can do this with any app that can run a script with input, or call it from automated scripts if you could think of a reason to. Below is the AppleScript for a LaunchBar action. Create a new script in AppleScript Editor and paste the code in. Edit the path in the last function to point to wherever you put the otask script. Save the AppleScript as OTask.scpt in `~/Library/Application Support/LaunchBar/Actions`.
You'll find the Action in LaunchBar after it indexes. Type 'ota' (or as much as you need to get it to come up) and then press space bar. Use the syntax shown above to write out your action and its elements, but leave out the 'otask' part and any parameters. Hit return and Growl (you have it [installed, right?](http://growl.info)) will tell you what's up.
on handle_string(actionString)
if (length of actionString is not 0) then
my runRubyScript(actionString)
end if
open location "x-launchbar:hide"
end handle_string
on runRubyScript(action)
set res to do shell script "$HOME/scripts/otask.rb -g \"" & action & "\""
end runRubyScript
== CHANGELOG:
0.2.3
* -v --version support
* -l --list option for listing available projects and contexts
* -l can receive either p (project) or c (context), as well as an optional :filter on the argument (e.g. '-l c:email' shows all contexts containing a fuzzy match of 'email')
* -c switch can be used with the -l flag to output space-separated lists for use with shell completion
* Better project/context fetching methods, ignore unavailable
* Improved fuzzy match project/context name results
== REQUIREMENTS:
* rb-appscript
* chronic
* amatch
== INSTALL:
* sudo gem install otask
== LICENSE:
(The MIT License)
Copyright (c) Ryan Davis, seattle.rb
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.