aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--task_next_projects.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/task_next_projects.pl b/task_next_projects.pl
index f9714b5..d87d8a4 100644
--- a/task_next_projects.pl
+++ b/task_next_projects.pl
@@ -9,7 +9,7 @@ sub pending_work {
my $tw = qx(task project:w status:pending export);
my $text = $json->decode( $tw );
foreach my $h (@{$text}) {
- printf ("%s: %s\n", ${$h}{'uuid'}, ${$h}{'description'});
+ printf ("%-16s: %s\n", ${$h}{'project'}, ${$h}{'description'});
}
}
@@ -17,10 +17,11 @@ sub pending_home {
my $tw = qx(task project:h status:pending export);
my $text = $json->decode( $tw );
foreach my $h (@{$text}) {
- printf ("%s: %s\n", ${$h}{'uuid'}, ${$h}{'description'});
+ printf ("%-16s: %s\n", ${$h}{'project'}, ${$h}{'description'});
}
}
+
print "Work:\n-----\n";
pending_work();