From 100d58261a116f5cb085671be1f5a568bae46b72 Mon Sep 17 00:00:00 2001 From: Josh Fabean Date: Sun, 21 Jun 2020 12:42:36 -0500 Subject: [PATCH] init commit --- watson-status | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 watson-status diff --git a/watson-status b/watson-status new file mode 100755 index 0000000..5617668 --- /dev/null +++ b/watson-status @@ -0,0 +1,9 @@ +#! /bin/bash +project="$(watson status -p)" +this_time="$(watson status -e)" + +if [ "${project}" == "No project started." ]; then + echo "" +else + echo "${project}: ${this_time}" +fi