Skip to content

swiftDialog

A modern macOS dialog utility for administrators that displays beautiful, customizable dialogs from the command line

swiftDialog v2.5.6 - Download from GitHub

What’s New:

  • Enhanced JSON configuration support
  • Improved dark mode detection
  • New timer and progress bar features
  • Bug fixes and performance improvements

View Full Changelog →




Terminal window
# Simple notification
dialog --title "Welcome" \
--message "Hello from swiftDialog!" \
--icon "SF=star.fill"
# User input form
dialog --title "User Information" \
--message "Please enter your details:" \
--textfield "Name,prompt=Enter your name" \
--textfield "Email,prompt=Enter your email" \
--button1text "Submit"
# Progress indicator
dialog --title "Installing Software" \
--message "Please wait while we set things up..." \
--progress 10 \
--progresstext "Starting installation..."