Kaynağa Gözat

Prevent multiple instances of username entry dialog from running

Bob Mottram 7 yıl önce
ebeveyn
işleme
239614e8e8
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. 4
    0
      src/freedombone-image-customise

+ 4
- 0
src/freedombone-image-customise Dosyayı Görüntüle

@@ -781,6 +781,10 @@ function mesh_client_startup_applications {
781 781
     echo '' >> $START_DESKTOP
782 782
     echo 'INITIAL_TOX_USERNAME=""' >> $START_DESKTOP
783 783
     echo 'while [ ${#INITIAL_TOX_USERNAME} -eq 0 ]; do' >> $START_DESKTOP
784
+    echo '  username_dialog_count=$(ps aux | grep zenity | wc -l)' >> $START_DESKTOP
785
+    echo '  if [ $username_dialog_count -gt 1 ]; then' >> $START_DESKTOP
786
+    echo '    exit 0' >> $START_DESKTOP
787
+    echo '  fi' >> $START_DESKTOP
784 788
     echo "  data=\$(zenity --forms --title=\"$MESH_TITLE\" --text=\"$MESH_SET_USERNAME\" --separator=\",\" --add-entry=\"Username\")" >> $START_DESKTOP
785 789
     echo '  accepted=$?' >> $START_DESKTOP
786 790
     echo '  if ((accepted == 0)); then' >> $START_DESKTOP