blob: 510ff7eac88ca2956672017aa8785b526561faa3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
pkgs:
pkgs.writeScriptBin "todos" ''
#!${pkgs.stdenv.shell}
case $BLOCK_BUTTON in
1) notify-send "Tasks" "\n$(todoist l | cut -d\ -f5- | sed 's/^/* /')" ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
echo "✅$(todoist list | wc -l)"
''
|