├── .gitignore ├── GetBackgroundProcessExitCode.sh ├── LICENSE ├── README.md ├── Screenshot-Example.png ├── Screenshot-Example_dark.png ├── arraysNoEval.sh ├── captureButtonOutput.sh ├── checklistJSONexample.sh ├── deferralsExample.sh ├── lightOrDark.sh ├── persistentDialog.sh ├── progressExample.sh └── promptForRestart.sh /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | com.bigmacadmin.deferralexample.plist 4 | -------------------------------------------------------------------------------- /GetBackgroundProcessExitCode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/GetBackgroundProcessExitCode.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot-Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/Screenshot-Example.png -------------------------------------------------------------------------------- /Screenshot-Example_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/Screenshot-Example_dark.png -------------------------------------------------------------------------------- /arraysNoEval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/arraysNoEval.sh -------------------------------------------------------------------------------- /captureButtonOutput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/captureButtonOutput.sh -------------------------------------------------------------------------------- /checklistJSONexample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/checklistJSONexample.sh -------------------------------------------------------------------------------- /deferralsExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/deferralsExample.sh -------------------------------------------------------------------------------- /lightOrDark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/lightOrDark.sh -------------------------------------------------------------------------------- /persistentDialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/persistentDialog.sh -------------------------------------------------------------------------------- /progressExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/progressExample.sh -------------------------------------------------------------------------------- /promptForRestart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecondSonConsulting/swiftDialogExamples/HEAD/promptForRestart.sh --------------------------------------------------------------------------------