7 lines
161 B
Plaintext
7 lines
161 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
[ "$1" = "usage" ] && echo " et" && echo " Edit the todo.txt file with emacsclient -t" && exit 0
|
||
|
shift
|
||
|
|
||
|
emacsclient -t "$TODO_DIR/todo.txt"
|