No longer specify push to push tasks to stack

This commit is contained in:
Tyler Perkins 2021-10-24 19:34:11 -04:00
parent 4c34edd67c
commit cded3c94a4
1 changed files with 2 additions and 1 deletions

3
todo
View File

@ -21,5 +21,6 @@ case $cmd in
"push") td_push "$(echo $result | cut -d ' ' -f 2-)";;
"pop") td_pop ;;
"peek") td_peek ;;
*) notify-send "stackToDo" "Invalid command" ;;
#assume meant to push
*) td_push "$result" ;;
esac