From f24f2d15275961f1c0144e68fde75a60aeaaa165 Mon Sep 17 00:00:00 2001 From: Julio Capote Date: Mon, 23 Jan 2023 22:20:47 -0500 Subject: move to bear theme --- ...extension-for-creating-wunderlist-task.markdown | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 content/blog/2012-1-9-alfred-extension-for-creating-wunderlist-task.markdown (limited to 'content/blog/2012-1-9-alfred-extension-for-creating-wunderlist-task.markdown') diff --git a/content/blog/2012-1-9-alfred-extension-for-creating-wunderlist-task.markdown b/content/blog/2012-1-9-alfred-extension-for-creating-wunderlist-task.markdown new file mode 100644 index 0000000..e9af9b3 --- /dev/null +++ b/content/blog/2012-1-9-alfred-extension-for-creating-wunderlist-task.markdown @@ -0,0 +1,25 @@ +--- +title: "Alfred Extension for creating Wunderlist tasks" +date: 2012-01-09T23:36:00Z +comments: false +url: /alfred-extension-for-creating-wunderlist-task +tags: +--- + + + +While looking for a way to add wunderlist tasks via alfred, I came upon [wunderlist-for-alfred](http://jdfwarrior.tumblr.com/post/13163220116/wunderlist-for-alfred) + +Looked cool, but I wanted to write my own that didn't depend on php. + +I used ```lsof``` to figure out the location of the db, then used ```file``` to see what kind of db it was. Luckily, it was sqlite3, so I was able to poke around and figure out the sql to create a task. + +Here's the alfred extenstion that ties it all together: + +```sh +user=`whoami` +wunderdb="/Users/$user/Library/Wunderlist/wunderlist.db" +sqlite3 $wunderdb "insert into tasks (name, list_id) values ('{query}', 1)" +``` + +Download it [here](http://dl.dropbox.com/u/42561/wunderlist-capotej.alfredextension) -- cgit v1.2.3