diff --git a/src/freedombone-utils-selector b/src/freedombone-utils-selector
index 80031bee5a8a369d8160df24f3edb152b5ceb57f..16fb4122e7c442c45f824ab5446e77f7bf68b86c 100755
--- a/src/freedombone-utils-selector
+++ b/src/freedombone-utils-selector
@@ -390,15 +390,20 @@ function install_apps {
         app_index=0
         for a in "${APPS_AVAILABLE[@]}"
         do
+            echo -n "${a}"
             if [[ ${APPS_INSTALLED[$app_index]} == "0" ]]; then
+                echo -n $" not installed"
                 if [[ ${APPS_CHOSEN[$app_index]} == "1" ]]; then
+                    echo -n $" chosen"
                     # interactively obtain settings for this app
                     if [[ $(function_exists install_interactive_${a}) == "1" ]]; then
-                        echo $"Interactive settings for ${a}"
+                        echo -n $" interactive"
                         install_interactive_${a}
                     fi
                 fi
             fi
+            echo ""
+
             app_index=$[app_index+1]
         done
         echo $"Interactive settings complete"