8 lines
200 B
Bash
Executable File
8 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ "$1" = "usage" ] && echo " et" && echo " Edit the todo.txt file with emacsclient -t" && exit 0
|
|
shift
|
|
|
|
#emacsclient -t "$TODO_DIR/todo.txt"
|
|
emacsclient -ce '(todotxt-open-file)'
|