From 3845db1ac36f37156e47933fc112990d29e7bfa2 Mon Sep 17 00:00:00 2001 From: Steven Saus Date: Tue, 23 Nov 2021 07:04:09 -0500 Subject: [PATCH] Moved priority to the front because some interpreters need it that way --- yad-todo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yad-todo.sh b/yad-todo.sh index 0f5f860..36f332c 100755 --- a/yad-todo.sh +++ b/yad-todo.sh @@ -58,5 +58,5 @@ if [ "$NewPriority" != "" ];then fi NewDate=$(echo "$OutString" | awk -F '|' '{print $5}') -TaskString=$(printf "/usr/bin/todo-txt add \"%s %s %s %s %s\"" "$NewTask" "$NewContext" "$NewProject" "$NewPriority" "$NewDate") +TaskString=$(printf "/usr/bin/todo-txt add \"%s %s %s %s %s\"" "$NewPriority" "$NewTask" "$NewContext" "$NewProject" "$NewDate") eval "${TaskString}"