commit 100d58261a116f5cb085671be1f5a568bae46b72 Author: Josh Fabean Date: Sun Jun 21 12:42:36 2020 -0500 init commit 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