Ver código fonte

vim app off by default

Bob Mottram 8 anos atrás
pai
commit
d067de37d9
1 arquivos alterados com 5 adições e 1 exclusões
  1. 5
    1
      src/freedombone-addremove

+ 5
- 1
src/freedombone-addremove Ver arquivo

@@ -65,7 +65,11 @@ function show_apps {
65 65
         if [[ ${APPS_INSTALLED[$app_index]} == "0" &&  "$select_all_apps" != "add-all" ]]; then
66 66
             applist="$applist $n $a off"
67 67
         else
68
-            applist="$applist $n $a on"
68
+            if [[ "$a" == "vim" && "$select_all_apps" == "add-all" ]]; then
69
+                applist="$applist $n $a off"
70
+            else
71
+                applist="$applist $n $a on"
72
+            fi
69 73
         fi
70 74
         n=$[n+1]
71 75
         app_index=$[app_index+1]